--- import { ArrowTopRightOnSquareIcon, CodeBracketIcon, DocumentTextIcon, } from "@heroicons/react/20/solid" import { Bars3Icon } from "@heroicons/react/24/outline" import { getCollection } from "astro:content" import AppLogo from "./app-logo.astro" import ExternalLink from "./external-link.astro" import MenuItem from "./menu-item.astro" import Menu from "./menu.astro" const links = [ { href: "/guides/getting-started", label: "Guides", icon: DocumentTextIcon, component: "a", prefetch: true, }, { href: "/api/", label: "API Reference", icon: CodeBracketIcon, component: "a", }, { href: "https://github.com/itsMapleLeaf/reacord", label: "GitHub", icon: ArrowTopRightOnSquareIcon, // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment component: ExternalLink, }, ] const guides = await getCollection("guides") ---