Β·2 min read
Welcome to the Blog
A quick hello and an overview of what you can expect to read here in the weeks ahead.
announcementwelcome
Welcome! π This is the very first post, and I'm glad you stopped by.
This blog is built with a stack chosen specifically for speed and search-engine friendliness:
- Next.js with static export β every page is pre-rendered to plain HTML.
- MDX β write posts in Markdown, with the option to drop in React components.
- Tailwind CSS β tiny, fast, no render-blocking styles.
What you'll find here
Over the coming weeks I'll be publishing:
- Practical guides and how-tos.
- Honest stories and lessons learned.
- The occasional opinion piece.
Tip
Every post is just a Markdown file in content/posts/. Commit it, the site
rebuilds, and it's live within seconds.
A quick demo of what MDX can do
Markdown works as you'd expect β bold, italics, inline code, links,
and tables:
| Feature | Supported |
|---|---|
| Headings | β |
| Tables | β |
| Code blocks | β |
| Custom widgets | β |
And here's a code block:
function greet(name: string) {
return `Hello, ${name}!`
}
Thanks for reading β more soon.
Note
You can delete this sample post anytime by removing
content/posts/welcome-to-the-blog.mdx.