From 52b8348203e6f7065dd8454b2a03792c4551221b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 14 Jun 2026 19:54:14 +0200 Subject: [PATCH] feat: add 404 page matching app design system Co-Authored-By: Claude Sonnet 4.6 --- app/not-found.tsx | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 app/not-found.tsx diff --git a/app/not-found.tsx b/app/not-found.tsx new file mode 100644 index 0000000..286224c --- /dev/null +++ b/app/not-found.tsx @@ -0,0 +1,31 @@ +import type { Metadata } from 'next' +import Link from 'next/link' + +export const metadata: Metadata = { title: '404 ยท World Cup' } + +export default function NotFound() { + return ( +
+
+
+ 404 +
+

+ This page doesn't exist. +

+ + Back to Home + +
+
+ ) +}