First step into the world of blogging
•
1 min read
This is my first ever blog post. I’m not really sure if this is the something for me quite yet, but I thought I’d give it a try. I hope to share some insights on web development, TypeScript, and other topics that interest me.
What You Can Expect
I’ll be writing about:
- Web Development - Modern frameworks, best practices, and tooling
- TypeScript - Advanced patterns and real-world applications
- Performance - Building fast, accessible websites
- Project Updates - Progress on FigCalc and other projects
The Tech Stack
This blog is built with:
- Astro.js v5+ for static site generation
- TypeScript for type safety
- Tailwind CSS for styling
- Bun for package management
- Cloudflare Pages for hosting
// Example: Type-safe blog configuration
interface BlogPost {
title: string;
description: string;
publishDate: Date;
tags: string[];
}
Stay tuned for more technical deep-dives and project updates!