diff --git a/src/app/add-listing/[[...stepIndex]]/PageAddListing8.tsx b/src/app/add-listing/[[...stepIndex]]/PageAddListing8.tsx new file mode 100644 index 0000000..be104e1 --- /dev/null +++ b/src/app/add-listing/[[...stepIndex]]/PageAddListing8.tsx @@ -0,0 +1,70 @@ +import React, { FC } from "react"; +import Input from "@/shared/Input"; +import Select from "@/shared/Select"; +import FormItem from "../FormItem"; + +export interface PageAddListing8Props {} + +const PageAddListing8: FC = () => { + return ( + <> +
+

Price your space

+ + {` The host's revenue is directly dependent on the setting of rates and + regulations on the number of guests, the number of nights, and the + cancellation policy.`} + +
+
+ {/* FORM */} +
+ {/* ITEM */} + + + + +
+
+ $ +
+ +
+ USD +
+
+
+ {/* ----- */} + +
+
+ $ +
+ +
+ USD +
+
+
+ {/* ----- */} + +
+
+ % +
+ +
+ every month +
+
+
+
+ + ); +}; + +export default PageAddListing8;