My First Blog Post

Published on: October 26, 2023 | Tags: astro, blogging, learning

Welcome to My First Post

This is the content of my very first blog post using MDX!

Features

  • MDX allows you to use JSX components inside Markdown.
  • Astro makes it easy to build content-driven websites.
// Example component (though we haven't created any yet for MDX)
const MyComponent = () => <p>Hello from a component!</p>;

<MyComponent />

More to come soon!