--- const { pathname } = Astro.url; const { class: className = '', href, ...props } = Astro.props; const isActive = href === pathname || href === (pathname.endsWith('/') ? pathname.slice(0, -1) : pathname); ---