new-personal-site/pages/index.tsx
2025-12-02 16:30:46 +01:00

26 lines
859 B
TypeScript

import Layout from "@/layouts/main";
import Main from "@/components/pages/Home";
import AboutSection from "@/components/pages/Home/(sections)/AboutSection";
import Divider from "@/components/lib/layout/Divider";
import MySkillsSection from "@/components/pages/Home/(sections)/MySkillsSection";
import MyWorkSection from "@/components/pages/Home/(sections)/MyWorkSection";
export default function Home() {
return (
<Layout
meta={{
description:
"Software Engineer, DevOps Engineer, Full Stack Developer, Software Architect, Philosopher, Solar Energy Enthusiast.",
}}
>
<Main />
<Divider />
<AboutSection />
<Divider />
<MySkillsSection />
<Divider />
<MyWorkSection />
</Layout>
);
}