diff --git a/src/components/Projects.astro b/src/components/Projects.astro index cd7524c..2fbdc5c 100644 --- a/src/components/Projects.astro +++ b/src/components/Projects.astro @@ -1,12 +1,14 @@ --- import { Icon } from "astro-icon/components"; import Section from "./ui/Section.astro"; +import Tooltip from "./ui/Tooltip.astro"; const { projects } = Astro.props; interface ProjectTag { name: string; icon?: string; + tooltip?: string; } interface ProjectProps { @@ -40,11 +42,14 @@ interface ProjectProps {
{project.tags.map((tag: ProjectTag) => ( - +
+ + +
))} {project.liveUrl && (