new-personal-site/pages/index.tsx

22 lines
692 B
TypeScript
Raw Permalink Normal View History

2024-12-09 15:36:17 +00:00
import Layout from "@/layouts/main";
import H1 from "@/components/lib/layout/H1";
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";
2024-11-28 14:50:17 +00:00
export default function Home() {
2024-12-09 15:36:17 +00:00
return (
<Layout>
<Main />
<Divider />
<AboutSection />
<Divider />
<MySkillsSection />
<Divider />
<MyWorkSection />
</Layout>
);
2024-11-28 14:50:17 +00:00
}