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

{title}

); }