--- import type { CollectionEntry } from 'astro:content' import { getConfig } from '@libs/config' import { getVersionedDocsPath } from '@libs/path' import type { Layout } from '@libs/layout' import BootstrapWhiteFillIcon from '@components/icons/BootstrapWhiteFillIcon.astro' import GitHubIcon from '@components/icons/GitHubIcon.astro' import HamburgerIcon from '@components/icons/HamburgerIcon.astro' import LinkItem from '@components/header/LinkItem.astro' import OpenCollectiveIcon from '@components/icons/OpenCollectiveIcon.astro' import XIcon from '@components/icons/XIcon.astro' import Versions from '@components/header/Versions.astro' import ThemeToggler from '@layouts/partials/ThemeToggler.astro' interface Props { addedIn?: CollectionEntry<'docs'>['data']['added'] layout: Layout title: string } const { addedIn, layout, title } = Astro.props ---