import clsx from "clsx" import React from "react" import { AppLink } from "../components/app-link" import { MainNavigation } from "../components/main-navigation" import { guideLinks } from "../data/guide-links" import { Html } from "../html" import { docsProseClass, linkClass, maxWidthContainer, } from "../styles/components" export default function DocsPage({ title, description, html, }: { title: string description: string html: string }) { return (
) }