Compare commits

..
3 Commits
Author SHA1 Message Date
DeCentN2Madness 4a6b8a20e5 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-11 19:08:48 -07:00
DeCentN2Madness 965c090782 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-11 14:26:02 -07:00
DeCentN2Madness a163ff98c9 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-11 13:56:25 -07:00
+2 -13
View File
@@ -4,19 +4,8 @@ interface Props { section: InsuranceSection }
const { section } = Astro.props; const { section } = Astro.props;
--- ---
<style> <style>
.insurance-section .logo-row { .insurance-section .logo-row { margin-top: 2rem; }
align-items: center; .logo-row img { filter: none; }
display: flex;
flex-wrap: wrap;
gap: var(--space-lg);
justify-content: center;
margin-top: 2rem;
}
.insurance-section .logo-row img {
max-height: 55px;
max-width: 130px;
}
</style> </style>
<section class="section insurance-section"> <section class="section insurance-section">