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 (
{/* 长方形容器 - 调整宽高比和背景色 */}
{/* 图标容器 */}
{/* Hover 蒙版效果 - 参考 DemoCard */}
{/* 标题 - absolute 定位,类似 DemoCard */}

{title}

); }