--- export interface Props { url: string | undefined title: string questReleaseDate: string shortdescription: string } const options_date: Intl.DateTimeFormatOptions = { year: 'numeric', month: 'long', day: '2-digit', } const { shortdescription, questReleaseDate, url, title } = Astro.props const render_date = new Date(questReleaseDate).toLocaleDateString( 'en-GB', options_date ) ---

{title}

{render_date}

{shortdescription}