site/src/components/NavLink.astro
2026-01-19 08:51:58 +07:00

16 lines
381 B
Text

---
interface Props {
href: string;
ariaLabel?: string;
}
const { href, ariaLabel } = Astro.props;
---
<a
href={href}
class="hover:underline underline-offset-4 decoration-transparent hover:decoration-current transition-colors duration-300 aria-[current]:underline aria-[current]:decoration-current aria-[current]:font-semibold"
aria-label={ariaLabel}
>
<slot />
</a>