diff --git a/src/app/add-listing/[[...stepIndex]]/PageAddListing2.tsx b/src/app/add-listing/[[...stepIndex]]/PageAddListing2.tsx new file mode 100644 index 0000000..9f651f7 --- /dev/null +++ b/src/app/add-listing/[[...stepIndex]]/PageAddListing2.tsx @@ -0,0 +1,85 @@ +"use client"; + +import { MapPinIcon } from "@heroicons/react/24/solid"; +import LocationMarker from "@/components/AnyReactComponent/LocationMarker"; +import Label from "@/components/Label"; +import GoogleMapReact from "google-map-react"; +import React, { FC } from "react"; +import ButtonSecondary from "@/shared/ButtonSecondary"; +import Input from "@/shared/Input"; +import Select from "@/shared/Select"; +import FormItem from "../FormItem"; + +export interface PageAddListing2Props {} + +const PageAddListing2: FC = () => { + return ( + <> +

Your place location

+
+ {/* FORM */} +
+ + + Use current location + + {/* ITEM */} + + + + + + + + + +
+ + + + + + + + + +
+
+ + + 1110 Pennsylvania Avenue NW, Washington, DC 20230 + +
+
+
+ + + +
+
+
+
+
+ + ); +}; + +export default PageAddListing2;