Welcome to my technical blog! This is an example post to demonstrate the blog functionality.
This blog is built with modern web technologies:
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"]
};
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');
This blog features a technical minimal design aesthetic:
Every post includes:
Adding new posts is simple:
.md file in src/content/blog/That’s it! No build commands, no manual deployments.
Feel free to explore the blog, check out the RSS feed, or browse posts by tags.
Happy reading!