import Image from 'next/image'; import Link from 'next/link'; export function ArticleCard({ url, title, tag, cover, team, date, }: { url: string; title: string; tag?: string; cover: string; team?: string; date: Date; }) { return ( {title} {tag && {tag}}

{title}

{[team, date.toLocaleDateString()].filter(Boolean).join(' ยท ')}

); }