← Back to writings

Hello, World

This is a placeholder essay. Replace this file — or add new .md files alongside it — with your actual writing.

Adding New Posts

Drop a Markdown file into src/content/writings/ with this frontmatter:

title: "Your Title"
date: 2025-07-01
description: "One-sentence summary."
draft: false

Set draft: true to hide a post from the public site while you’re still writing.

What Markdown Supports

Full formatting is available: bold, italic, inline code, and hyperlinks.

Blockquotes are styled cleanly for emphasis or attribution.

Unordered and ordered lists work naturally:

  • First point
  • Second point
  • Third point

And code blocks with syntax highlighting:

const greet = (name) => `Hello, ${name}`;
console.log(greet('world'));