import { CodeIcon, DocumentTextIcon, ExternalLinkIcon, } from "@heroicons/react/solid" import React from "react" import type { AppLinkProps } from "../components/app-link" import { inlineIconClass } from "../styles/components" export const mainLinks: AppLinkProps[] = [ { type: "internal", to: "/docs/getting-started", label: ( <> Guides ), }, { type: "internal", to: "/docs/api", label: ( <> API Reference ), }, { type: "external", to: "https://github.com/itsMapleLeaf/reacord", label: ( <> GitHub ), }, ]