import Link from "next/link"; type MangaCardProps = { slug: string; title: string; coverUrl: string; chapterCount?: number; }; export function MangaCard({ slug, title, coverUrl, chapterCount, }: MangaCardProps) { return ( {chapterCount !== undefined && ( {chapterCount} )}
{title}

{title}

); }