feat: full recode a home page and add docker file, start write a cd pipline
Some checks failed
Deploy / deploy-frontend (push) Has been cancelled

This commit is contained in:
d3m0k1d
2026-02-01 22:33:18 +03:00
parent 57d8578bd2
commit 0684b70dad
9 changed files with 214 additions and 46 deletions

View File

@@ -2,13 +2,14 @@ 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>