diff --git a/app/components/sections/Skills.tsx b/app/components/sections/Skills.tsx index 1c8386f..c6aab78 100644 --- a/app/components/sections/Skills.tsx +++ b/app/components/sections/Skills.tsx @@ -20,34 +20,36 @@ export default function Skills({ id, open, onClose }: SkillsProps) { return (
- {skillsData.map((section, i) => ( -
-
-

+
+

{t(section.title)}:

-
- {section.tags.map((tag, j) => { - const Icon = (SiIcons as Record)[tag.icon]; - return ( - -
- {Icon && } - {tag.name} -
-
- ); - })} +
+ {section.tags.map((tag, j) => { + const Icon = (SiIcons as Record)[tag.icon]; + return ( + +
+ {Icon && } + {tag.name} +
+
+ ); + })} +
-

- ))} + ))} +
);