--- // SPDX-FileCopyrightText: 2025 Norbert Melzer // SPDX-FileContributor: Norbert Melzer // // SPDX-License-Identifier: MIT import NavItem from "./NavItem.astro"; export interface Props { class?: string; } const class_ = Astro.props.class ?? ""; ---