import Link from "next/link";

export default function TenantNotFoundPage() {
  return (
    <div className="flex min-h-screen flex-col items-center justify-center gap-4 bg-slate-50 px-4 text-center">
      <h1 className="text-2xl font-semibold text-slate-900">Tenant not found</h1>
      <p className="max-w-md text-sm text-slate-600">
        This business URL or custom domain is not registered, or is not active yet.
      </p>
      <Link
        href="/"
        className="rounded-md bg-slate-900 px-4 py-2 text-sm font-medium text-white hover:bg-slate-800"
      >
        Go to Nizamify
      </Link>
    </div>
  );
}
