Files
Hayden Bleasel cf9ccd0076 Open Source Docs (#272)
* Scaffold Geistdocs instance

* Update biome.json

* Replace content

* Re-path docs

* Update docs package name

* Misc fixes

* Update geistdocs.tsx

* Move content to correct folder

* Start migrating custom components

* Finish migrating custom components

* Migrate existing redirects

* Remove #next suffixes from code blocks

* Migrate homepage and flags

* Remove duplicate lockfiles

* Start fixing homepage

* Replace Geist components

* Fix colors

* Improve layout

* Fix code blocks

* Fix hero

* Fix illustrations

* Fix redirect

* Fix nav links

* Patch in FrameworkSwitcher

* Bump Next.js in docs

* Delete turbo.json

* Misc fixes

* More logo fixes
2026-02-13 09:06:03 +02:00

36 lines
950 B
TypeScript

import {
DocsBody as FumadocsDocsBody,
DocsDescription as FumadocsDocsDescription,
DocsPage as FumadocsDocsPage,
DocsTitle as FumadocsDocsTitle,
} from "fumadocs-ui/layouts/docs/page";
import type { ComponentProps } from "react";
import { cn } from "@/lib/utils";
type PageProps = ComponentProps<typeof FumadocsDocsPage>;
export const DocsPage = ({ ...props }: PageProps) => (
<FumadocsDocsPage {...props} />
);
export const DocsTitle = ({
className,
...props
}: ComponentProps<typeof FumadocsDocsTitle>) => (
<FumadocsDocsTitle
className={cn("mb-4 text-4xl tracking-tight", className)}
{...props}
/>
);
export const DocsDescription = (
props: ComponentProps<typeof FumadocsDocsDescription>
) => <FumadocsDocsDescription {...props} />;
export const DocsBody = ({
className,
...props
}: ComponentProps<typeof FumadocsDocsBody>) => (
<FumadocsDocsBody className={cn("mx-auto w-full", className)} {...props} />
);