From 7346b42ff30bc791ca5276d4743e84690f1a4c82 Mon Sep 17 00:00:00 2001 From: DanielS Date: Tue, 11 Aug 2026 01:30:23 +0200 Subject: [PATCH] feat: add custom 404 error page with animated background and navigation links --- shop/app/not-found.tsx | 90 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 shop/app/not-found.tsx diff --git a/shop/app/not-found.tsx b/shop/app/not-found.tsx new file mode 100644 index 0000000..9fd85fa --- /dev/null +++ b/shop/app/not-found.tsx @@ -0,0 +1,90 @@ +'use client' + +import Link from 'next/link' +import { motion } from 'framer-motion' +import { AsciiShaderBackground } from '@/components/AsciiShaderBackground' +import { ArrowLeft, Home } from 'lucide-react' +import { Button } from '@/components/ui/button' + +export default function NotFound() { + return ( +
+ + +
+ + {/* Große 404 */} + + 404 + + + {/* Beschreibung */} + +

+ Seite nicht gefunden +

+

+ Die angeforderte Seite existiert nicht oder wurde verschoben. +

+
+ + {/* Buttons */} + + + + + + + {/* Subtle info */} + + Fehlercode 404 · CASPOS Shop + +
+
+
+ ) +}