import { Header } from '@/components/sections/header'; import { createMetadata } from '@/lib/metadata'; import { HomeLayout } from 'fumadocs-ui/layouts/home'; import { getLinks } from 'fumadocs-ui/layouts/shared'; import type { Metadata } from 'next'; import { baseOptions, linkItems } from './layout.config'; export default function NotFound() { return ( ), }} className='pt-0' >

404

This page could not be found.

); } export async function generateMetadata(props: { params: Promise<{ slug?: string[] }>; }): Promise { const params = await props.params; const description = 'The page you are looking for could not be found.'; return createMetadata({ title: 'Not Found', description, }); }