MDX post example

This is the first post of my new Astro blog.

Hello world!

Syntax highlighting

We also support syntax highlighting in MDX out-of-the-box! This example uses our default Shiki theme. See the MDX integration docs for configuration options.

---
title: 'MDX post example'
pubDate: 2022-07-01
description: 'This is the first post of my new Astro blog.'
author: 'Astro Learner'
tags: ["astro", "blogging", "learning in public"]
---

export const authors = [
    { name: 'Jane', email: '[email protected]' },
    { name: 'John', twitter: '@john2002' },
];
export const published = new Date('2022-02-01');