feat: remove skill section

This commit is contained in:
afiqzudinhadi 2025-06-07 00:05:23 +08:00
parent ba2c4c2932
commit 9629bd30d5
3 changed files with 0 additions and 57 deletions

View file

@ -3,7 +3,6 @@ import { Navigation } from "@/components/navigation";
import { HeroSection } from "@/components/hero-section";
import { ExperienceSection } from "@/components/experience-section";
import { ProjectsSection } from "@/components/projects-section";
import { SkillsSection } from "@/components/skills-section";
import { ContactSection } from "@/components/contact-section";
import { portfolioData } from "@/data/portfolio";
@ -21,7 +20,6 @@ export default function Index() {
<HeroSection profile={portfolioData.profile} />
<ExperienceSection experiences={portfolioData.experiences} />
<ProjectsSection projects={portfolioData.projects} />
<SkillsSection skills={portfolioData.skills} />
<ContactSection profile={portfolioData.profile} />
</div>
);