Fatboys
HomeBlogDocs

11 September 2026 · The team

Hello, world#

Every post on this blog is a single MDX file in frontend/blog/. The file name becomes the URL, so this post lives at /blog/hello-world.

Writing a post#

Start the file with a meta export:

export const meta = {
    title: 'Our first release',
    date: '2026-10-01',
    author: 'Your name',
    excerpt: 'One or two sentences for the post list and the page description.'
}

Then write the post in Markdown. Headings get linkable anchors, code blocks and tables are styled to match the documentation, and posts are listed newest first.

Removing this post#

Delete frontend/blog/hello-world.mdx. With no posts the blog shows an empty state rather than an error.

← All posts