Files
web/src/components/top_nav/Link.astro
T
2026-01-18 01:24:26 +02:00

8 lines
161 B
Plaintext

---
const {href} = Astro.props
const isActive = Astro.url.pathname.startsWith(href)
---
<a class:list={[{active: isActive}]} href={href}>
<slot></slot>
</a>