--- import { Icon } from "astro-icon/components"; import I18nKey from "../i18n/i18nKey"; import { i18n } from "../i18n/translation"; import { formatDateToYYYYMMDD } from "../utils/date-utils"; import { getCategoryUrl, getTagUrl } from "../utils/url-utils"; interface Props { class: string; published: Date; updated?: Date; tags: string[]; category: string | null; hideTagsForMobile?: boolean; hideUpdateDate?: boolean; } const { published, updated, tags, category, hideTagsForMobile = false, hideUpdateDate = false, } = Astro.props; const className = Astro.props.class; ---