import { ArrowUpRight } from "lucide-react"; import { cn } from "@/lib/utils"; interface ResourceCardProps { title: string; description: string; href: string; tags?: string[]; className?: string; } export function ResourceCard({ title, description, href, tags, className, }: ResourceCardProps) { return (