You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.3 KiB
64 lines
1.3 KiB
import { notFound } from 'next/navigation';
|
|
import { type Metadata } from 'next/types';
|
|
import { allPages } from 'contentlayer/generated';
|
|
|
|
import { blogConfig } from '@/config';
|
|
import { MDXContent } from '@/components/mdx-content';
|
|
|
|
type PageProps = {
|
|
params: {
|
|
slug: string[];
|
|
};
|
|
};
|
|
|
|
export async function generateStaticParams(): Promise<PageProps['params'][]> {
|
|
return allPages.map(({ slug }) => ({
|
|
slug: slug.split('/'),
|
|
}));
|
|
}
|
|
|
|
export function generateMetadata({ params }: PageProps): Metadata {
|
|
const { title, description, url } = allPages.find(
|
|
({ slug }) => slug === params.slug.join('/'),
|
|
) || {
|
|
title: 'Page Not Found',
|
|
description: 'Page Not Found',
|
|
url: '/',
|
|
};
|
|
|
|
const ogImage = {
|
|
url: `${blogConfig.url}/og?title=${title}`,
|
|
};
|
|
|
|
return {
|
|
title,
|
|
description,
|
|
openGraph: {
|
|
type: 'website',
|
|
url: `${blogConfig.url}${url}`,
|
|
title,
|
|
description,
|
|
images: [ogImage],
|
|
},
|
|
twitter: {
|
|
title,
|
|
description,
|
|
images: ogImage,
|
|
card: 'summary_large_image',
|
|
},
|
|
};
|
|
}
|
|
|
|
export default async function Page({ params }: PageProps) {
|
|
const page = allPages.find(({ slug }) => slug === params.slug.join('/'));
|
|
|
|
if (!page) {
|
|
notFound();
|
|
}
|
|
|
|
return (
|
|
<div className="h-full px-8">
|
|
<MDXContent code={page.body.code} />
|
|
</div>
|
|
);
|
|
}
|
|
|