diff --git a/app/not-found.tsx b/app/not-found.tsx new file mode 100644 index 0000000..597fe1b --- /dev/null +++ b/app/not-found.tsx @@ -0,0 +1,62 @@ +import Link from 'next/link' + +export default function NotFound() { + return ( +
+
+ {/* 404 met speedrun styling */} +
+

404

+
+
+ + {/* Speedrun-themed message */} +

+ Je bent iets te snel voor onze speedrun +

+ +

+ Deze feature is nog niet gebouwd. Blijkbaar heb je een snellere route gevonden dan wij verwacht hadden. + Respect voor de optimalisatie! 🏃‍♂️ +

+ + {/* Stats box - speedrun style */} +
+
+ Status: + NOT_FOUND +
+
+ Build Progress: + IN_PROGRESS +
+
+ ETA: + SOON™ +
+
+ + {/* Action buttons */} +
+ + ← Terug naar de start + + + Probeer het prototype + +
+ + {/* Easter egg */} +

+ Tip: Probeer de bekende routes in de timeline. Die werken wél. +

+
+
+ ) +}