import { Link } from "@inertiajs/react";

export default function NotFound() {
  return (
    <div className="flex min-h-screen flex-col items-center justify-center text-center">
      <h1 className="text-6xl font-bold">404</h1>
      <p className="mt-4 text-lg text-muted-foreground">
        Sorry, the page you are looking for does not exist.
      </p>

      <Link
        href="/"
        className="mt-6 rounded bg-orange-500 px-4 py-2 text-white"
      >
        Go Home
      </Link>
    </div>
  );
}
