All checks were successful
Build and deploy website / build (push) Successful in 33s
- 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
13 lines
201 B
Plaintext
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>
|
|
))
|
|
}
|