import Link from "next/link";
import { SearchX } from "lucide-react";
import { Button } from "@/components/ui/Button";

export default function NotFound() {
  return (
    <div className="flex min-h-dvh flex-col items-center justify-center gap-4 px-6 text-center">
      <span className="flex h-16 w-16 items-center justify-center rounded-2xl bg-gold/12">
        <SearchX size={26} strokeWidth={2} className="text-gold-dim dark:text-gold-bright" />
      </span>
      <div>
        <h1 className="font-display text-lg font-semibold">Page not found</h1>
        <p className="mt-1.5 max-w-sm text-sm text-muted">
          That page doesn't exist or may have moved.
        </p>
      </div>
      <Link href="/">
        <Button>Go to Dashboard</Button>
      </Link>
    </div>
  );
}
