Hello, World!
·1 min read
Welcome to My Blog! 🎉
This is my first blog post. I built this blog from scratch using:
- Next.js — React framework for production
- Tailwind CSS — Utility-first CSS framework
- MDX — Markdown with JSX support
Why I Built This
I wanted a place to share my thoughts, document my learning journey, and showcase projects. A personal website with a blog felt like the perfect way to do that.
What to Expect
I'll be writing about:
- Web development tips and tricks
- Projects I'm working on
- Things I learn along the way
Code Example
Here's a quick TypeScript snippet:
function greet(name: string): string {
return `Hello, ${name}! Welcome to my blog.`;
}
console.log(greet("Friend"));
Stay tuned for more posts!