server-dash/app/components/LinkCard.tsx
2026-05-21 21:13:06 -07:00

27 lines
955 B
TypeScript

import { type AppLink } from "../lib/links";
interface LinkCardProps {
link: AppLink;
delay?: number;
}
export default function LinkCard({ link, delay = 0 }: LinkCardProps) {
return (
<a
href={link.href}
target="_blank"
rel="noopener noreferrer"
className="bg-primary border border-secondary rounded-2xl p-6 flex flex-col gap-2 hover:-translate-y-1 hover:border-blue/30 transition-all duration-200 animate-fade-up no-underline text-inherit"
style={{ animationDelay: `${delay}ms` }}
>
<div className="w-11 h-11 bg-blue/10 rounded-xl flex items-center justify-center text-2xl mb-1">
{link.icon}
</div>
<span className="text-base font-medium text-foreground">{link.name}</span>
<span className="text-sm text-foreground-sec font-light">{link.description}</span>
<span className="mt-auto pt-2 text-sm font-medium text-blue">
Open app
</span>
</a>
);
}