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

12 lines
265 B
TypeScript

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