import Link from "next/link";
import { Button } from "@/components/ui/Button";
import { EmptyState } from "@/components/shared/EmptyState";

export default function NotFound() {
  return (
    <div className="flex min-h-screen flex-col items-center justify-center bg-bg p-6">
      <EmptyState
        title="Page not found"
        description="The page you're looking for doesn't exist or was moved."
        action={
          <Link href="/">
            <Button variant="primary" size="sm">
              Back to home
            </Button>
          </Link>
        }
      />
    </div>
  );
}
