2025-11-25 05:43:26 +01:00
|
|
|
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";
|
|
|
|
|
|
2025-11-24 14:25:27 +01:00
|
|
|
export default function Page() {
|
|
|
|
|
return (
|
2025-11-25 05:43:26 +01:00
|
|
|
<main className="min-h-screen">
|
|
|
|
|
<Hero />
|
|
|
|
|
<About />
|
|
|
|
|
<Skills />
|
|
|
|
|
<Projects />
|
|
|
|
|
<Contact />
|
|
|
|
|
</main>
|
2025-11-24 14:25:27 +01:00
|
|
|
);
|
|
|
|
|
}
|