--- import { flattenSidebar, type SidebarEntry } from '../utils/navigation'; import Icon from '../user-components/Icon.astro'; import Badge from './Badge.astro'; interface Props { sublist: SidebarEntry[]; nested?: boolean; } const { sublist, nested } = Astro.props; ---