A personal portfolio site with blog built using modern web technologies.
- React Router v7 (renamed from Remix) - Full-stack React framework
- TailwindCSS v4 - Utility-first CSS framework
- Three.js - 3D graphics library for synthwave background
- TypeScript - Type-safe JavaScript
- Vitest - Fast unit testing framework
- Cloudflare Workers - Edge deployment platform
pnpm install
pnpm dev
app/
├── components/ # Reusable React components
│ ├── SynthwaveBackground/ # Three.js animated background
│ ├── ShareButtons/ # Social media sharing buttons
│ ├── MarkdownContent.tsx # Markdown styling component
│ ├── Navigation.tsx # Site navigation
│ ├── ThemeToggle.tsx # Dark/light mode switcher
│ └── ...
├── routes/ # File-based routing
│ ├── home.tsx # Landing page
│ ├── blog.tsx # Blog listing with RSS link
│ ├── blog.post.tsx # Individual blog posts with sharing
│ ├── rss[.]xml.tsx # RSS feed generation
│ └── sitemap[.]xml.tsx # SEO sitemap
├── utils/ # Utility functions
│ ├── blog.ts # Blog content processing & image handling
│ ├── cache.ts # Response caching
│ └── ...
└── __tests__/ # Comprehensive test suite
content/blog/ # Markdown blog posts with frontmatter
public/images/ # Blog post images (WebP format)