diff --git a/apps/web/app/not-found.tsx b/apps/web/app/not-found.tsx new file mode 100644 index 0000000..ff08752 --- /dev/null +++ b/apps/web/app/not-found.tsx @@ -0,0 +1,32 @@ +import Link from "next/link"; +import { Button } from "@call/ui/components/button"; +import { Undo2 } from "lucide-react"; + +export const metadata = { + title: "404 | Page Not Found - Call", + description: + "Oops! The page you’re looking for isn’t available. Head back to the homepage.", +}; + +export default function NotFound() { + return ( +
+
+

404

+

+ Looks like you've wandered off the call. The page you're trying to reach + doesn't exist or maybe it's on mute. +

+

+ Let's get you back on track. +

+ +
+
+ ); +}