Files
gridpilot.gg/apps/website/app/404/page.tsx
2026-01-18 23:43:58 +01:00

12 lines
256 B
TypeScript

import { NotFoundPageClient } from '@/client-wrapper/NotFoundPageClient';
/**
* Custom404Page
*
* Entry point for the /404 route.
* Orchestrates the 404 page rendering.
*/
export default function Custom404Page() {
return <NotFoundPageClient />;
}