import { LucideIcon } from 'lucide-react'; import Link from 'next/link'; interface CollectionCardProps { title: string; icon: LucideIcon; href: string; } export default function CollectionCard({ title, icon: Icon, href, }: CollectionCardProps) { return (