### Changes:
1. **Create Blog Content Directory**
- Created src/content/blog/ directory for content management
- Added README.md with usage instructions
- Added 3 sample blog posts
2. **Update Content Retrieval Function**
- Modified getHomepagePosts() in homepage.ts
- Now reads from src/content/blog/ instead of CMS config
- Content and style are now separated
3. **Content Management**
- Style: Keep existing components and styles
- Content: Manage via markdown files in src/content/blog/
- Metadata: YAML front matter (title, author, date, tags, excerpt)
- Sorting: Sort by date (newest first)
### Benefits:
- Content separated from code
- Easy for non-technical users to add content
- Version control friendly
- Unified metadata management
To add new blog posts:
1. Create .md file in src/content/blog/
2. Use standard front matter format
3. Use kebab-case for filenames
🤖 Generated with [Claude Code](https://claude.com/claude-code)