diff --git a/dist.rar b/dist.rar new file mode 100644 index 0000000..5f329e4 Binary files /dev/null and b/dist.rar differ diff --git a/public/images/masterplanWing/skygardenIndoor.png b/public/images/masterplanWing/skygardenIndoor.png new file mode 100644 index 0000000..0a9092f Binary files /dev/null and b/public/images/masterplanWing/skygardenIndoor.png differ diff --git a/public/images/masterplanWing/skygardenOutdoor.png b/public/images/masterplanWing/skygardenOutdoor.png new file mode 100644 index 0000000..7b24d5c Binary files /dev/null and b/public/images/masterplanWing/skygardenOutdoor.png differ diff --git a/src/components/MultiRangeSlider.tsx b/src/components/MultiRangeSlider.tsx index 3a39376..7348a70 100644 --- a/src/components/MultiRangeSlider.tsx +++ b/src/components/MultiRangeSlider.tsx @@ -1,3 +1,4 @@ +/* eslint-disable @typescript-eslint/no-unused-vars */ import { useState, useRef, useEffect } from "react"; import RangeSlider from "react-range-slider-input"; // import "react-range-slider-input/dist/style.css"; @@ -9,7 +10,7 @@ interface MultiRangeSliderProps { max: number; } -const MultiRangeSlider = ({ min, max, onChange }: MultiRangeSliderProps) => { +const MultiRangeSlider = ({ min, max }: MultiRangeSliderProps) => { const [firstValue, setFirstValue] = useState(min); const [secondValue, setSecondValue] = useState(max); const firstInputRef = useRef(null); diff --git a/src/components/complexWingPage/SkygardenDescription.tsx b/src/components/complexWingPage/SkygardenDescription.tsx index 50d167c..23c96b8 100644 --- a/src/components/complexWingPage/SkygardenDescription.tsx +++ b/src/components/complexWingPage/SkygardenDescription.tsx @@ -1,5 +1,3 @@ -interface ISkygardenDescriptionProps {} - const SkygardenDescription = () => { return (
);
}
diff --git a/src/components/complexWingPage/SkygardenSidebar/SkygardenOutdoorLayout.tsx b/src/components/complexWingPage/SkygardenSidebar/SkygardenOutdoorLayout.tsx
index 8a4b7f3..24ae7aa 100644
--- a/src/components/complexWingPage/SkygardenSidebar/SkygardenOutdoorLayout.tsx
+++ b/src/components/complexWingPage/SkygardenSidebar/SkygardenOutdoorLayout.tsx
@@ -1,34 +1,11 @@
const SkygardenOutdoorLayout = () => {
return (
-
+
);
};
diff --git a/src/components/complexWingPage/SkygardenSidebar/SkygardenSidebar.tsx b/src/components/complexWingPage/SkygardenSidebar/SkygardenSidebar.tsx
index 69a7a35..82c7c1c 100644
--- a/src/components/complexWingPage/SkygardenSidebar/SkygardenSidebar.tsx
+++ b/src/components/complexWingPage/SkygardenSidebar/SkygardenSidebar.tsx
@@ -1,5 +1,4 @@
/* eslint-disable @typescript-eslint/no-unused-vars */
-import { useState } from "react";
import AmphitheatreIcon from "../../icons/activities/AmphitheatreIcon";
import BoulderingWallIcon from "../../icons/activities/BoulderingWallIcon";
import ChangingRoomsIcon from "../../icons/activities/ChangingRoomsIcon";
@@ -18,26 +17,10 @@ import SunLoungingDeckIcon from "../../icons/activities/SunLoungingDeckIcon";
import SuspendedLoungingNetsIcon from "../../icons/activities/SuspendedLoungingNetsIcon";
import WellnessFeaturesIcon from "../../icons/activities/WellnessFeaturesIcon";
import ActivityCard from "./ActivityCard";
-import SkygardenIndoorLayout from "./SkygardenIndoorLayout";
import ZoneSlider from "./ZoneSlider";
-import { ISwitchLabel } from "../../../types/switchLabel";
-import SwitchToggle from "../../SwitchToggle";
import LayoutSlider from "./LayoutSlider";
-const skygardenLayouts: ISwitchLabel[] = [
- { id: "1", label: "Indoor" },
- { id: "2", label: "Outdoor" },
-];
-
const SkygardenSidebar = () => {
- const [currentLabel, setCurrentLabel] = useState