Add tourAvailable property to projects and fix iframe class formatting

This commit is contained in:
2025-07-22 17:43:49 +05:00
parent 3a4af48d8f
commit 9f298e7e35
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -592,6 +592,7 @@ export const projects: Project[] = [
y: 97,
},
],
tourAvailable: true,
},
{
name: "Studio² Type B",
@@ -888,6 +889,7 @@ export const projects: Project[] = [
y: 309,
},
],
tourAvailable: true,
},
{
name: "1 Bedroom² Type C",
@@ -1186,6 +1188,7 @@ export const projects: Project[] = [
y: 405,
},
],
// tourAvailable: true,
},
{
name: "Sky Loft Type A",
+1 -1
View File
@@ -18,7 +18,7 @@ function VirtualTourPage() {
</div>
<iframe
src={`/virtual-tours/${complexName}/${unitTypeSlug}/index.html`}
className="2xl:h-[calc(100vh-4.444vw)] md:max-2xl:h-[calc(100vh-64px)] h-[calc(100vh-48px)] w-full"
className="2xl:h-[calc(100vh-4.444vw)] md:max-2xl:h-[calc(100vh-64px)] h-[calc(100vh-48px)] w-full"
/>
</div>
);