show section send msg just for nobat724 domain

This commit is contained in:
Ehsan
2025-05-12 21:24:48 +03:30
parent 1fa42a3700
commit 555bbddb53
6 changed files with 64 additions and 46 deletions
+10 -3
View File
@@ -1,11 +1,18 @@
import Call from "./Call";
import { getStateInfo } from "@/lib/getStateInfo";
import Call from "./call/Call";
import Connect from "./Connect";
function ContactUsPage() {
const { matchedCity } = getStateInfo();
const isDefault = matchedCity?.id === "63";
console.log(isDefault);
return (
<div className="w-full pt-[24px] sm:pt-[56px] md:pt-[88px] lg:pt-[120px] mt-[56px] padding-responsive flex flex-col lg:flex-row items-center justify-between h-fit">
<Call />
<Connect />
<Call isDefault={isDefault} />
{isDefault && (
<Connect />
)}
</div>
);
}