import type { Metadata } from "next"; import Link from "next/link"; import { ArrowLeft, ArrowRight } from "lucide-react"; import { Logo } from "@/components/brand/logo"; import { Button } from "@/components/ui/button"; export const metadata: Metadata = { title: "Page not found", robots: { index: false, follow: false } }; export default function NotFound() { return (

Error 404

This page doesn't exist.

The link may be broken, the share may have been revoked, or the page moved. Nothing here has been lost on your side.

); }