--- import { getFormattedDate } from '@utils/date' const { publishDate, wordCount, readTime, tags } = Astro.props --- {getFormattedDate(publishDate)} | {readTime} min. read | { tags.map((tag, i) => ( <> #{tag} {i < tags.length - 1 && ", "} > )) }