Welcome to my technical blog! This is an example post to demonstrate the blog functionality.

About This Blog

This blog is built with modern web technologies:

Features

Markdown Support

Write posts in clean Markdown with full syntax highlighting support:

// Example TypeScript code
interface BlogPost {
  title: string;
  description: string;
  publishDate: Date;
  tags: string[];
}

const post: BlogPost = {
  title: "Example Post",
  description: "A sample blog post",
  publishDate: new Date(),
  tags: ["typescript", "web"]
};

Code Highlighting

Multiple languages supported out of the box:

# Python example
def fibonacci(n: int) -> int:
    if n <= 1:
        return n
    return fibonacci(n-1) + fibonacci(n-2)

print(fibonacci(10))
// JavaScript example
const greet = (name) => {
  console.log(`Hello, ${name}!`);
};

greet('World');

Technical Minimal Design

This blog features a technical minimal design aesthetic:

SEO Optimized

Every post includes:

Workflow

Adding new posts is simple:

  1. Create a new .md file in src/content/blog/
  2. Add frontmatter with title, description, date, tags
  3. Write your content in Markdown
  4. Commit and push to GitHub
  5. Cloudflare Pages automatically deploys

That’s it! No build commands, no manual deployments.

Next Steps

Feel free to explore the blog, check out the RSS feed, or browse posts by tags.

Happy reading!