import Link from "next/link"; export interface CategoryCardProps { id: string; title: string; slug: string; excerpt?: string; date?: string; } export const BlogCard = ({ id, title, slug, excerpt, date }: CategoryCardProps) => { return (