--- interface BreadcrumbItem { label: string; href?: string; } interface Props { items: BreadcrumbItem[]; } const { items } = Astro.props; ---