a163ff98c9
- 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
16 lines
297 B
Plaintext
16 lines
297 B
Plaintext
---
|
|
import MainNav from './MainNav.astro';
|
|
const { lang = 'en' } = Astro.props;
|
|
---
|
|
<details class="mobile-nav">
|
|
<summary>Menu</summary>
|
|
<MainNav lang={lang} />
|
|
</details>
|
|
|
|
<style>
|
|
.mobile-nav { display: none; }
|
|
@media (max-width: 950px) {
|
|
.mobile-nav { display: block; }
|
|
}
|
|
</style>
|