From c362a666180311e8c00145206dd12f5c32d5c6e5 Mon Sep 17 00:00:00 2001 From: fullsizemalt <106900403+fullsizemalt@users.noreply.github.com> Date: Wed, 24 Dec 2025 13:44:57 -0800 Subject: [PATCH] feat: add custom 404 page --- frontend/app/not-found.tsx | 43 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 frontend/app/not-found.tsx diff --git a/frontend/app/not-found.tsx b/frontend/app/not-found.tsx new file mode 100644 index 0000000..e762d7f --- /dev/null +++ b/frontend/app/not-found.tsx @@ -0,0 +1,43 @@ +import Link from "next/link" +import { Button } from "@/components/ui/button" +import { Home, ArrowLeft, Search } from "lucide-react" + +export default function NotFound() { + return ( +
+
+
404
+ +
+

Page Not Found

+

+ The page you're looking for doesn't exist or may have been moved. +

+
+ +
+ + +
+ +

+ Looking for a specific show? Try the{" "} + + shows page + {" "} + or use the search. +

+
+
+ ) +}