Compare commits

..
3 Commits
Author SHA1 Message Date
DeCentN2Madness 4dcc97dc48 feat(library): restore live-site intro copy above post listings
- add the two live intro paragraphs between the hero and article grid
- keep the library listing cards in the live two-column layout
- restore the 4:3 cropped article thumbnails and card spacing via library-scoped selectors
- avoid leaking the card-grid overrides into unrelated pages
- add likes/views from api to library article cards
2026-06-15 16:31:54 -07:00
DeCentN2Madness 9b4b6c2774 fix(homepage): move section rendering into the Astro template
- keep homepage section data driven from structured frontmatter
- render typed section components inside the template map instead of frontmatter helper code
- resolve the Astro parse error in HomePage.astro
- preserve the existing homepage section order and component split
2026-06-15 16:31:54 -07:00
DeCentN2Madness 21cb521d32 refactor(styles): move component-specific CSS into Astro components
- relocate header, footer, nav, hero, and page-hero styles into their owning components
- move blog index, blog post, team, video, insurance, CTA, and home-section styles out of the global sheet
- keep  focused on shared primitives such as buttons, cards, links, and list styling
- preserve existing layout and responsive behavior while reducing global CSS scope
2026-06-15 16:31:54 -07:00
+1 -1
View File
@@ -9,7 +9,7 @@ const { section } = Astro.props;
display: flex;
flex-wrap: wrap;
gap: var(--space-lg);
justify-content: center;
justify-content: space-between;
margin-top: 2rem;
}