'use client' import { AppRouterHeader } from '@/app/components/AppRouterHeader' import { useAppRouterMainContext } from '@/app/components/AppRouterMainContext' import { ServerFooter } from '@/app/components/ServerFooter' import { createTranslationFunctions } from '@/languages/lib/translation-utils' import { CommentDiscussionIcon } from '@primer/octicons-react' export function NotFoundContent() { const context = useAppRouterMainContext() const { t } = createTranslationFunctions(context.site.data.ui, 'not_found') return (
) }