Files
d3m0k1d.ru/frontend/src/App.tsx
d3m0k1d 0684b70dad
Some checks failed
Deploy / deploy-frontend (push) Has been cancelled
feat: full recode a home page and add docker file, start write a cd pipline
2026-02-01 22:33:18 +03:00

20 lines
440 B
TypeScript

import "./App.css";
import Navigation from "./components/Navigation.tsx";
import Footer from "./components/Footer.tsx";
import Home from "./pages/Home.tsx";
import About from "./components/Skills.tsx";
function App() {
return (
<div className="min-h-screen flex flex-col">
<Navigation />
<main className="flex-grow">
<Home />
<About />
</main>
<Footer />
</div>
);
}
export default App;