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. +

+
+
+ ) +}