--- import type { Props as AstroProps } from 'astro'; interface Props { tags?: string[]; } const { tags = [] } = Astro.props; const selectedTag = Astro.url.searchParams.get('tag'); const links = [ { label: "github", href: "https://github.com/DerGrumpf", icon: "/github.png" }, { label: "gitea", href: "https://git.cyperpunk.de", icon: "/git.png" }, { label: "instagram", href: "https://www.instagram.com/dergrumpf/", icon: "/instagram.png" }, { label: "matrix", href: "https://matrix.to/#/@dergrumpf:cyperpunk.de", icon: "/matrix.png" }, { label: "spotify", href: "https://open.spotify.com/user/fackthatshiet?si=d502739d787e497e", icon: "/spotify.png" }, { label: "rss", href: "/rss.xml", icon: "/rss.png" }, ]; ---