From e3118f4d68c4dca178123af61123dc524057a671 Mon Sep 17 00:00:00 2001 From: colinislit Date: Mon, 17 Nov 2025 19:47:41 +0100 Subject: [PATCH] feat: Speedrun-themed 404 page toevoegen MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Voegt een 404 not-found pagina toe met speedrun/gaming thema: - Humoristische boodschap: "Je bent iets te snel voor onze speedrun" - Status display in terminal-style met NOT_FOUND, IN_PROGRESS, SOON™ - Teal accent kleur consistent met design system - CTA's naar homepage en /login - Easter egg hint naar timeline routes 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- app/not-found.tsx | 62 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 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..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. +

+
+
+ ) +}