Aug 13, 2025
Example Post – Getting Started with the Influesque Blog
A tiny MDX example to show how posts are authored and rendered.
Example Post – Getting Started
This is a short example written in MDX. You can use normal Markdown plus React components.
Writing tips
- Keep titles concise and use sentence case
- Add a 1–2 sentence description in the frontmatter
- Include a cover image (optional)
MDX components
You can drop React components right in the content once they are exported to the MDX runtime.
console.log('Hello from MDX!');
That’s it—create a new file with .mdx
, add frontmatter at the top, and your post is ready. If you want this file to appear on the blog index, place it under src/content/blog/
.