From 77d8dcb75f915af34e6e964c80dda60e7eb11f6b Mon Sep 17 00:00:00 2001 From: John Doe Date: Tue, 12 Sep 2023 17:41:54 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20Added=20form=20for=20selecting?= =?UTF-8?q?=20amenities.=20=F0=9F=8F=A1=20Included=20options=20for=20gener?= =?UTF-8?q?al=20amenities.=20=F0=9F=9B=8B=EF=B8=8F=20Added=20checkboxes=20?= =?UTF-8?q?for=20other=20amenities.=20=F0=9F=94=90=20Integrated=20safety?= =?UTF-8?q?=20amenities=20selection.=20=F0=9F=92=A1=20Improved=20UI=20for?= =?UTF-8?q?=20amenity=20selection.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../[[...stepIndex]]/PageAddListing4.tsx | 92 +++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 src/app/add-listing/[[...stepIndex]]/PageAddListing4.tsx diff --git a/src/app/add-listing/[[...stepIndex]]/PageAddListing4.tsx b/src/app/add-listing/[[...stepIndex]]/PageAddListing4.tsx new file mode 100644 index 0000000..11919c9 --- /dev/null +++ b/src/app/add-listing/[[...stepIndex]]/PageAddListing4.tsx @@ -0,0 +1,92 @@ +import React, { FC } from "react"; +import Checkbox from "@/shared/Checkbox"; + +export interface PageAddListing4Props {} + +const PageAddListing4: FC = () => { + return ( + <> +
+

Amenities

+ + Many customers have searched for accommodation based on amenities + criteria + +
+
+ {/* FORM */} +
+ {/* ITEM */} +
+ +
+ + + + + + + + + + + + + + + +
+
+ + {/* ITEM */} +
+ +
+ + + + + + + + + + + + + + + +
+
+ + {/* ITEM */} +
+ +
+ + + + +
+
+
+ + ); +}; + +export default PageAddListing4;