feat: ajout sitemap, api et components

This commit is contained in:
2025-11-25 05:43:26 +01:00
parent da613c822a
commit 5a7cf45d98
29 changed files with 3339 additions and 34 deletions
+13 -4
View File
@@ -1,8 +1,17 @@
import About from "@/component/sections/About";
import Contact from "@/component/sections/Contact";
import Hero from "@/component/sections/Hero";
import Projects from "@/component/sections/Projects";
import Skills from "@/component/sections/Skills";
export default function Page() {
return (
<div className="p-4">
<h1 className="text-2xl font-bold">Jessy David</h1>
<p>Hello World !</p>
</div>
<main className="min-h-screen">
<Hero />
<About />
<Skills />
<Projects />
<Contact />
</main>
);
}