diff --git a/src/components/Skills.astro b/src/components/Skills.astro index 5f1d25c..33f4af6 100644 --- a/src/components/Skills.astro +++ b/src/components/Skills.astro @@ -1,6 +1,7 @@ --- import { Icon } from "astro-icon/components"; import Section from "./ui/Section.astro"; +import Tooltip from "./ui/Tooltip.astro"; const { skills } = Astro.props; @@ -22,15 +23,7 @@ interface SkillProps { data-inline="false" /> - - + ))} diff --git a/src/components/ui/Tooltip.astro b/src/components/ui/Tooltip.astro new file mode 100644 index 0000000..1e806f3 --- /dev/null +++ b/src/components/ui/Tooltip.astro @@ -0,0 +1,12 @@ +--- +const { tooltip } = Astro.props; +--- + + \ No newline at end of file