--- import Tag from './Tag.astro' interface Props { pubDate: Date slug: string title: string tags: { name: string, slug: string }[] } const { pubDate, slug, title, tags } = Astro.props ---