--- import SiteNav from "../components/SiteNav.astro"; import LevelToggle from "../components/LevelToggle.astro"; import BuildStamp from "../components/BuildStamp.astro"; import "../styles/global.css"; const { title, editionLabel, editionKey, statusLabel, statusKey, level, version } = Astro.props; const lvl = level ?? 1; const canonical = Astro.site ? new URL(Astro.url.pathname, Astro.site).href : Astro.url.href; ---