Skip to content

MDX Showcase

MDX lets you write regular Markdown and drop in components.

music_note A component rendered inside the page.

The current year is 2026.

  • You can import components and use them like HTML tags.
  • You can embed small JSX expressions inside Markdown.
  • You can keep Markdown readability and add interactivity.

You can still write Markdown lists:

  • Simple
  • Familiar
  • Fast

And you can mix in HTML when you need to:

This is a styled HTML callout inside an MDX file.

const play = (title) => {
console.log(`Now playing: ${title}`);
};