This commit is contained in:
2026-02-16 12:50:45 +01:00
parent 8f5abed48d
commit 3b9fa373bc
8 changed files with 227 additions and 40 deletions
+3
View File
@@ -4,6 +4,7 @@ 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";
import FooterCTASection from "@/components/pages/Home/(sections)/footer-cta-section";
export default function Home() {
return (
@@ -20,6 +21,8 @@ export default function Home() {
<MySkillsSection />
<Divider />
<MyWorkSection />
<Divider />
<FooterCTASection />
</Layout>
);
}