Hello World
2026-02-08
Welcome to my blog! This is my first post, written in Markdown.
Why a blog?
I wanted a simple place to share my thoughts and learnings. This blog is:
- Built with Next.js 15 and static export
- Styled with Tailwind CSS
- Deployed to AWS S3 + CloudFront
- Written in plain Markdown files
Code example
Here's a simple TypeScript function:
function greet(name: string): string {
return `Hello, ${name}!`;
}
That's it for now. More posts coming soon!