--- const pathName = new URL(Astro.request.url).pathname; interface Props { navbarDisplay: "normal" | "transparent"; } import person from "@data/person"; import links from "@assets/menu-primary"; import ThemeSwitcher from "@components/ThemeSwitcher.astro"; const { navbarDisplay = "normal" } = Astro.props as Props; ---