--- import Section from "../Section.astro"; enum NavigationItemType { Link = 0, Text = 1, } type NavigationItem = | { path: string; label: string; type: NavigationItemType.Link; } | { type: NavigationItemType.Text; content: string; }; type NavigationGroup = { title: string; class?: string; items: Array; }; const tree: Array = [ { title: "Übersicht", items: [ { path: "/", type: NavigationItemType.Link, label: "Startseite", }, ], }, { title: "Rechtliches", items: [ { path: "/legal/imprint", label: "Impressum", type: NavigationItemType.Link, }, { path: "/legal/privacy", label: "Datenschutzerklärung", type: NavigationItemType.Link, }, ], }, { title: "Zugehöriges", items: [ { path: "https://enrico.buehler.earth", label: "Enrico Bühler", type: NavigationItemType.Link, }, ], }, { title: "", class: "ml-auto mr-0 self-end", items: [ { type: NavigationItemType.Text, content: "Made with ❤️ in Rottweil", }, ], }, ]; ---