upd images
|
Before Width: | Height: | Size: 1.7 MiB After Width: | Height: | Size: 2.2 MiB |
|
Before Width: | Height: | Size: 2.6 MiB After Width: | Height: | Size: 2.6 MiB |
|
After Width: | Height: | Size: 3.2 MiB |
|
After Width: | Height: | Size: 2.5 MiB |
|
After Width: | Height: | Size: 3.0 MiB |
|
After Width: | Height: | Size: 2.7 MiB |
@@ -39,7 +39,7 @@ function AmentitiesContentSlider({ srcs }: { srcs: string[] }) {
|
||||
{srcs.map((src) => (
|
||||
<img
|
||||
src={src}
|
||||
className="rounded-[1.111vw] shrink-0 pointer-events-none"
|
||||
className="rounded-[1.111vw] shrink-0 select-none pointer-events-none"
|
||||
alt=""
|
||||
/>
|
||||
))}
|
||||
|
||||
@@ -63,7 +63,7 @@ function GroundDubaiMarina() {
|
||||
</div>
|
||||
<img
|
||||
src="/images/floor-plans/dubai-marina/ground/content.png"
|
||||
className="rounded-[1.111vw]"
|
||||
className="rounded-[1.111vw] select-none"
|
||||
alt=""
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -84,6 +84,11 @@ function RooftopMarasiDrive() {
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<img
|
||||
src="/images/floor-plans/marasi-drive/rooftop/content.png"
|
||||
alt="rooftop"
|
||||
className="w-full rounded-[1.111vw] select-none"
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import useModalStore from "../../../stores/useModalStore";
|
||||
import AmentitiesBadge from "../../AmentitiesCard";
|
||||
import AmentitiesContentSlider from "../../AmentitiesContentSlider";
|
||||
import AmenitiesBadge from "../../icons/AmenitiesBadge";
|
||||
import AmphitheatreIcon from "../../icons/amentities/AmphitheatreIcon";
|
||||
import BoulderingWallIcon from "../../icons/amentities/BoulderingWallIcon";
|
||||
@@ -109,6 +110,14 @@ function SkyGardenMarasiDrive() {
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<AmentitiesContentSlider
|
||||
srcs={[
|
||||
"/images/floor-plans/marasi-drive/skygarden/content1.png",
|
||||
"/images/floor-plans/marasi-drive/skygarden/content2.png",
|
||||
"/images/floor-plans/marasi-drive/skygarden/content3.png",
|
||||
"/images/floor-plans/marasi-drive/skygarden/content4.png",
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||