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

export default function NotFound() {
  return (
    <div className="flex flex-1 flex-col items-center justify-center gap-4 px-6 pt-safe text-center">
      <span className="flex h-16 w-16 items-center justify-center rounded-3xl bg-gold/15">
        <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-xs text-sm text-muted">
          That page doesn't exist or may have moved.
        </p>
      </div>
      <Link href="/home" className="mt-2 w-full max-w-xs">
        <Button fullWidth>Go Home</Button>
      </Link>
    </div>
  );
}
