Files
gridpilot.gg/apps/website/app/500/page.tsx
2025-12-25 12:54:08 +01:00

22 lines
730 B
TypeScript

import Link from 'next/link';
export default function Custom500Page() {
return (
<main className="min-h-screen flex items-center justify-center bg-deep-graphite text-white px-6">
<div className="max-w-md text-center space-y-4">
<h1 className="text-3xl font-semibold">500</h1>
<p className="text-sm text-gray-400">
Something went wrong.
</p>
<div className="pt-2">
<Link
href="/"
className="inline-flex items-center justify-center rounded-md bg-primary-blue px-4 py-2 text-sm font-medium text-white hover:bg-primary-blue/80 transition-colors"
>
Drive home
</Link>
</div>
</div>
</main>
);
}