Merge remote-tracking branch 'origin/main' into v2-ui

This commit is contained in:
Vishnu 2025-05-15 10:01:31 +05:30
commit 3e97c67b24
1 changed files with 31 additions and 33 deletions

View File

@ -5,10 +5,9 @@ const SelectFloorPlan: React.FC = () => {
const { currentLayout, setLayout } = useLayoutStore();
return (
<div className="select-floorplane-wrapper">
Don't have an idea? Use these presets!
Preset Layouts
<div className="presets-container">
<button
id="preset-1"
className={`preset ${currentLayout === "layout1" ? "active" : ""}`}
onClick={() => {
setLayout("layout1");
@ -17,7 +16,6 @@ const SelectFloorPlan: React.FC = () => {
Preset 1
</button>
<button
id="preset-2"
className={`preset ${currentLayout === "layout2" ? "active" : ""}`}
onClick={() => {
setLayout("layout2");