diff --git a/components/blog-index.js b/components/blog-index.js index 6a5e9b55..c7b3e63e 100644 --- a/components/blog-index.js +++ b/components/blog-index.js @@ -30,7 +30,11 @@ export default function BlogIndex({ more = "Read more" }) {

{page.frontMatter?.date ? (

- {page.frontMatter.date} + {new Intl.DateTimeFormat(locale, { + year: 'numeric', + month: 'long', + day: 'numeric', + }).format(new Date(page.frontMatter.date))}

) : null}