diff --git a/blog-page.html b/blog-page.html index 2fc5401..3bdf1d3 100644 --- a/blog-page.html +++ b/blog-page.html @@ -3,33 +3,303 @@ - Blog Post + Blog Post – Journey Mapper + - - + - - + -
+

Post Title

@@ -40,6 +310,7 @@

This is a placeholder paragraph for the blog post content. Replace with real content.

+
-
+

Comments

@@ -92,6 +363,7 @@
© 2026 My Blog
+ diff --git a/map-page.html b/map-page.html index 549c12b..4af8e23 100644 --- a/map-page.html +++ b/map-page.html @@ -479,9 +479,64 @@ flex-direction: row; } } + .site-header { + background: var(--gray-9); + padding: var(--size-4) var(--size-6); + border-bottom: 1px solid var(--surface-4); + } + .site-header .container { + max-width: 1400px; + margin: 0 auto; + display: flex; + justify-content: space-between; + align-items: center; + flex-wrap: wrap; + gap: var(--size-2); + } + .site-title { + margin: 0; + font-size: var(--font-size-4); + font-weight: var(--font-weight-6); + } + .site-title a { + color: var(--indigo-4); + text-decoration: none; + } + .site-nav { + display: flex; + gap: var(--size-4); + } + .site-nav a { + color: var(--gray-2); + text-decoration: none; + font-weight: var(--font-weight-5); + transition: color 0.2s; + padding: var(--size-1) var(--size-2); + border-radius: var(--radius-2); + } + .site-nav a:hover, + .site-nav a.active { + color: var(--indigo-4); + background: var(--surface-2); + } + .app-container { + flex: 1; + display: flex; + overflow: hidden; + } - + + +