Add blog section with Fritz2 and markdown#3
Merged
Conversation
Implement a blog with markdown content rendering using the marked.js library. Features include a blog index page listing all posts, individual post views with rendered markdown content, and a reactive navigation system with Home/Blog tabs. Post content is stored as markdown strings, keeping the implementation portable for future Compose Multiplatform migration. - Add marked npm dependency (v9.1.6 for Node 16 compatibility) - Create BlogPost data model with markdown content - Implement BlogStore for state management - Create BlogList and BlogPostView components - Add MarkdownRenderer with marked.js interop - Implement route-based blog navigation (#page=blog, #page=blog&post=slug) - Style blog pages with portfolio's existing Poppins/Karla design system - Add centered Home/Blog nav tabs with responsive selected state Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Kept remote's updated styling (backdrop blur header, tag animations, layout spacing) and integrated blog nav/padding additions. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a fully-functional blog section to the portfolio with markdown content rendering. Blog posts are stored as markdown strings and rendered via the marked.js library, enabling reactive filtering and future Compose Multiplatform migration.
Changes
Test Plan
🤖 Generated with Claude Code