diff --git a/app/components/skills-section.tsx b/app/components/skills-section.tsx
deleted file mode 100644
index 1fec020..0000000
--- a/app/components/skills-section.tsx
+++ /dev/null
@@ -1,54 +0,0 @@
-import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
-import { Progress } from "@/components/ui/progress";
-
-interface Skill {
- name: string;
- level: number;
-}
-
-interface SkillCategory {
- _id: string;
- category: string;
- items: Skill[];
-}
-
-interface SkillsSectionProps {
- skills: SkillCategory[];
-}
-
-export function SkillsSection({ skills }: SkillsSectionProps) {
- return (
-
-
-
Skills
-
- {skills.map((skillCategory) => (
-
-
-
- {skillCategory.category}
-
-
-
- {skillCategory.items.map((skill) => (
-
-
- {skill.name}
-
- {skill.level}%
-
-
-
-
- ))}
-
-
- ))}
-
-
-
- );
-}
diff --git a/app/root.tsx b/app/root.tsx
index def5fb7..b6b5eab 100644
--- a/app/root.tsx
+++ b/app/root.tsx
@@ -40,7 +40,6 @@ export function Layout({ children }: { children: React.ReactNode }) {
- Hello world!
{children}
diff --git a/app/routes/_index.tsx b/app/routes/_index.tsx
index 0dbd6b7..4ea19cb 100644
--- a/app/routes/_index.tsx
+++ b/app/routes/_index.tsx
@@ -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() {
-
);