mirror of
https://github.com/guezoloic/website.git
synced 2026-03-28 18:03:50 +00:00
fix(Skills): 'Element[]' is missing error resolved
This commit is contained in:
@@ -20,6 +20,7 @@ export default function Skills({ id, open, onClose }: SkillsProps) {
|
|||||||
return (
|
return (
|
||||||
<Window open={open} onClose={onClose}>
|
<Window open={open} onClose={onClose}>
|
||||||
<Section id={id} title={t("skills.title")}>
|
<Section id={id} title={t("skills.title")}>
|
||||||
|
<>
|
||||||
{skillsData.map((section, i) => (
|
{skillsData.map((section, i) => (
|
||||||
<div key={i} className="flex flex-col gap-2">
|
<div key={i} className="flex flex-col gap-2">
|
||||||
<div className="flex flex-col gap-2 max-w-3xl w-full bg-black/20 rounded-2xl p-8 space-y-4 shadow-lg">
|
<div className="flex flex-col gap-2 max-w-3xl w-full bg-black/20 rounded-2xl p-8 space-y-4 shadow-lg">
|
||||||
@@ -48,6 +49,7 @@ export default function Skills({ id, open, onClose }: SkillsProps) {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
|
</>
|
||||||
</Section>
|
</Section>
|
||||||
</Window>
|
</Window>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user