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 + +
+
+
+ ) +}