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 ( {tag && {tag}} {title} {[team, date.toLocaleDateString()].filter(Boolean).join(' ยท ')} ); }
{[team, date.toLocaleDateString()].filter(Boolean).join(' ยท ')}