2026-06-14 19:54:14 +02:00
|
|
|
import type { Metadata } from 'next'
|
|
|
|
|
import Link from 'next/link'
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = { title: '404 · World Cup' }
|
|
|
|
|
|
|
|
|
|
export default function NotFound() {
|
|
|
|
|
return (
|
|
|
|
|
<div className="max-w-[1200px] mx-auto px-7 py-20 flex flex-col items-center text-center">
|
|
|
|
|
<div
|
2026-06-14 22:01:40 +02:00
|
|
|
className="pitch-grid glass-card-hero rounded-2xl px-12 py-16 w-full max-w-lg"
|
2026-06-14 19:54:14 +02:00
|
|
|
>
|
2026-06-15 18:08:23 +02:00
|
|
|
<div className="font-['Bebas_Neue'] text-[120px] text-green leading-none">
|
2026-06-14 19:54:14 +02:00
|
|
|
404
|
|
|
|
|
</div>
|
2026-06-15 18:08:23 +02:00
|
|
|
<p className="text-green-sec text-lg mt-2 mb-8">
|
2026-06-14 19:54:14 +02:00
|
|
|
This page doesn't exist.
|
|
|
|
|
</p>
|
|
|
|
|
<Link
|
|
|
|
|
href="/"
|
2026-06-15 18:08:23 +02:00
|
|
|
className="inline-block font-['Bebas_Neue'] text-xl tracking-[0.1em] text-bg bg-green px-8 py-3 rounded-xl hover:bg-green-light transition-colors"
|
2026-06-14 19:54:14 +02:00
|
|
|
>
|
|
|
|
|
Back to Home
|
|
|
|
|
</Link>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|