Files
martials.no/src/components/header/NavbarDrawer.astro
Martin Berg Alstad 1b3c6c629e
All checks were successful
Build and deploy website / build (push) Successful in 33s
More mobile friendly, fix wrong URL, Hamburger menu
- Hamburger menu on mobile
- title is moved into header on mobile
- Smaller titles on mobile
- Fix wrong import of env in config
- Cleaned up unused imports
2025-02-15 23:00:38 +01:00

13 lines
201 B
Plaintext

---
import Links from "../../links"
import LocaleLink from "../links/LocaleLink.astro"
---
{
Links.map((link) => (
<li>
<LocaleLink to={link.to}>{link.label}</LocaleLink>
</li>
))
}