import { Skull, Search, GitPullRequest, Mail, Fish, ChartArea, House, } from "lucide-react"; export default function QuickLinks() { const links = [ { name: "Google", url: "https://www.google.com", icon: Search }, { name: "Gitea", url: "https://git.simponic.xyz", icon: GitPullRequest }, { name: "Scurvy", url: "https://scurvy.internal.simponic.xyz", icon: Skull, }, { name: "Mail", url: "https://roundcube.internal.simponic.xyz", icon: Mail, }, { name: "Home", url: "https://home.lucina.cloud", icon: House, }, { name: "Jellyfin", url: "https://jellyfin.internal.simponic.xyz", icon: Fish, }, { name: "Uptime Kuma", url: "https://uptime.internal.simponic.xyz", icon: ChartArea, }, ]; return (
{links.map((link) => { const Icon = link.icon; return ( {link.name} ); })}
); }