mon-site-perso/frontend/app/page.tsx
2025-09-20 14:16:14 +02:00

18 lines
369 B
TypeScript

import Skills from "@/app/components/Skills";
import Services from "@/app/components/Services";
import Contact from "@/app/components/Contact";
import About from "@/app/components/About";
export default function Home() {
return (
<div>
<About />
<Skills />
<Services />
<Contact />
</div>
)
}