mirror of
https://github.com/vercel/components.build.git
synced 2026-09-14 20:06:39 +08:00
55fae375a4
* Update Geistdocs * Update geistdocs.tsx * Run translation script * Delete toc.tsx * Update route.ts * Update route.ts
36 lines
950 B
TypeScript
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} />
|
|
);
|