1---
2const { href, text } = Astro.props;
3const currentPath = Astro.url.pathname;
4
5const isExternal = href.startsWith("https://");
6---
7
8<a href={href} target={isExternal ? "_blank" : "_self"}>
9 <div
10 class={
11 "inline-block relative" +
12 (currentPath === href
13 ? " underline decoration-2 underline-offset-8"
14 : ""
15 )}>
16 {text}
17 </div>
18</a>