Hello and welcome to my personal blog! This site is built with:
- Next.js 14 for the framework
- TypeScript for type safety
- Tailwind CSS for styling
- MDX for rich blog posts
- WebAssembly support for interactive demos
What You'll Find Here
I'll be writing about:
- Web development
- WebAssembly experiments
- Programming tutorials
- Technical insights
Code Example
Here's a simple TypeScript function:
function greet(name: string): string {
return `Hello, ${name}!`;
}
console.log(greet("World"));
Thanks for visiting!