diff --git a/components/Skill.js b/components/Skill.js index c669688..500a34c 100644 --- a/components/Skill.js +++ b/components/Skill.js @@ -1,31 +1,4 @@ export default function Skill({ label, color }) { - - switch (color) { - case "blue-500": - return - case "green-800": - return - - case "yellow-800": - return - - case "yellow-500": - return - - default: - return null - } + return
{label}
} -function TypescriptSkill({ label }) { - return
{label}
-} -function JavascriptSkill({ label }) { - return
{label}
-} -function PythonSkill({ label }) { - return
{label}
-} -function RustSkill({ label }) { - return
{label}
-}