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;