--- // SPDX-FileCopyrightText: 2025 Norbert Melzer // SPDX-FileContributor: Norbert Melzer // // SPDX-License-Identifier: MIT export type Props = { href?: string; }; const { href } = Astro.props; const active = !!href; ---