This commit is contained in:
2025-01-23 14:08:25 +01:00
parent c8eaef7c36
commit bd657eb7ea
10 changed files with 90 additions and 75 deletions

View File

@@ -1,4 +1,3 @@
// app/page.tsx
"use client";
import Header from "./components/Header";
@@ -8,15 +7,15 @@ import Contact from "./components/Contact";
import Footer from "./components/Footer";
export default function Home() {
return (
<>
<Header />
<main>
<Hero />
<Projects />
<Contact />
<Footer />
</main>
</>
);
}
return (
<>
<Header/>
<main>
<Hero/>
<Projects/>
<Contact/>
<Footer/>
</main>
</>
);
}