{ entries.map((entry) => { const categories = entry.data.categories ?? []; const tags = entry.data.tags ?? []; const title = entry.data.title ?? "Untitled"; const publishedDate = formatDate(entry.data.published); return (
`category-${slugify(category)}`)]}>

{title}

{excerptFromBody(entry.body)}

{ tags.length > 0 && (
) }
); }) }
{ totalPages > 1 && pageHref && (
) }