2025-01-07 02:48:56 -05:00
|
|
|
import {
|
|
|
|
Skull,
|
|
|
|
Search,
|
|
|
|
GitPullRequest,
|
|
|
|
Mail,
|
|
|
|
Fish,
|
|
|
|
ChartArea,
|
2025-01-17 15:03:39 -05:00
|
|
|
House,
|
2025-01-07 02:48:56 -05:00
|
|
|
} 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 },
|
2025-01-17 15:03:39 -05:00
|
|
|
{
|
|
|
|
name: "Scurvy",
|
|
|
|
url: "https://scurvy.internal.simponic.xyz",
|
|
|
|
icon: Skull,
|
|
|
|
},
|
2025-01-07 02:48:56 -05:00
|
|
|
{
|
|
|
|
name: "Mail",
|
|
|
|
url: "https://roundcube.internal.simponic.xyz",
|
|
|
|
icon: Mail,
|
|
|
|
},
|
2025-01-17 15:03:39 -05:00
|
|
|
{
|
|
|
|
name: "Home",
|
|
|
|
url: "https://home.lucina.cloud",
|
|
|
|
icon: House,
|
|
|
|
},
|
2025-01-07 02:48:56 -05:00
|
|
|
{
|
|
|
|
name: "Jellyfin",
|
|
|
|
url: "https://jellyfin.internal.simponic.xyz",
|
|
|
|
icon: Fish,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Uptime Kuma",
|
|
|
|
url: "https://uptime.internal.simponic.xyz",
|
|
|
|
icon: ChartArea,
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="rounded-lg p-6 justify-center flex gap-16">
|
|
|
|
{links.map((link) => {
|
|
|
|
const Icon = link.icon;
|
|
|
|
return (
|
|
|
|
<a
|
|
|
|
key={link.name}
|
|
|
|
href={link.url}
|
|
|
|
className="text-rose-700 hover:text-rose-800 transition-colors"
|
|
|
|
title={link.name}
|
|
|
|
>
|
|
|
|
<Icon className="w-8 h-8" />
|
|
|
|
<span className="sr-only">{link.name}</span>
|
|
|
|
</a>
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|