mirror of
https://github.com/warmbly/warmbly.git
synced 2026-09-05 00:01:49 +00:00
56 lines
1.8 KiB
TypeScript
56 lines
1.8 KiB
TypeScript
import { getPageImage, getPageMarkdown, source } from '@/lib/source';
|
|
import { DocsBody, DocsDescription, DocsPage, DocsTitle } from 'fumadocs-ui/layouts/docs/page';
|
|
import { notFound } from 'next/navigation';
|
|
import { getMDXComponents } from '@/mdx-components';
|
|
import type { Metadata } from 'next';
|
|
import { createRelativeLink } from 'fumadocs-ui/mdx';
|
|
import { LLMCopyButton, ViewOptions } from '@/components/ai/page-actions';
|
|
|
|
export default async function Page(props: PageProps<'/[...slug]'>) {
|
|
const params = await props.params;
|
|
const page = source.getPage(params.slug);
|
|
if (!page) notFound();
|
|
|
|
const MDX = page.data.body;
|
|
const markdownUrl = getPageMarkdown(page).url;
|
|
|
|
return (
|
|
<DocsPage toc={page.data.toc} full={page.data.full}>
|
|
<DocsTitle>{page.data.title}</DocsTitle>
|
|
<DocsDescription className="mb-2.5">{page.data.description}</DocsDescription>
|
|
<div className="flex flex-row items-center gap-2 border-b pb-6">
|
|
<LLMCopyButton markdownUrl={markdownUrl} />
|
|
<ViewOptions
|
|
markdownUrl={markdownUrl}
|
|
githubUrl={`https://github.com/warmbly/warmbly/blob/main/docs/content/docs/${page.path}`}
|
|
/>
|
|
</div>
|
|
<DocsBody>
|
|
<MDX
|
|
components={getMDXComponents({
|
|
a: createRelativeLink(source, page),
|
|
})}
|
|
/>
|
|
</DocsBody>
|
|
</DocsPage>
|
|
);
|
|
}
|
|
|
|
export async function generateStaticParams() {
|
|
return source.generateParams();
|
|
}
|
|
|
|
export async function generateMetadata(props: PageProps<'/[...slug]'>): Promise<Metadata> {
|
|
const params = await props.params;
|
|
const page = source.getPage(params.slug);
|
|
if (!page) notFound();
|
|
|
|
return {
|
|
title: page.data.title,
|
|
description: page.data.description,
|
|
openGraph: {
|
|
images: getPageImage(page).url,
|
|
},
|
|
};
|
|
}
|