From e52b00031c429e3ff7ae0772bc2061fa5fa2b4de Mon Sep 17 00:00:00 2001 From: John Doe Date: Tue, 12 Sep 2023 17:44:22 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20Added=20cover=20image=20upload?= =?UTF-8?q?=20functionality.=20=F0=9F=93=B7=20Implemented=20file=20upload?= =?UTF-8?q?=20feature=20for=20listing=20pictures.=20=F0=9F=8E=89=20Updated?= =?UTF-8?q?=20PageAddListing7=20component.=20=F0=9F=96=BC=EF=B8=8F=20Added?= =?UTF-8?q?=20image=20upload=20support=20to=20the=20listing=20page.=20?= =?UTF-8?q?=E2=9C=85=20Completed=20image=20upload=20feature.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../[[...stepIndex]]/PageAddListing7.tsx | 107 ++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 src/app/add-listing/[[...stepIndex]]/PageAddListing7.tsx diff --git a/src/app/add-listing/[[...stepIndex]]/PageAddListing7.tsx b/src/app/add-listing/[[...stepIndex]]/PageAddListing7.tsx new file mode 100644 index 0000000..7a04995 --- /dev/null +++ b/src/app/add-listing/[[...stepIndex]]/PageAddListing7.tsx @@ -0,0 +1,107 @@ +import React, { FC } from "react"; + +export interface PageAddListing7Props {} + +const PageAddListing7: FC = () => { + return ( + <> +
+

Pictures of the place

+ + A few beautiful photos will help customers have more sympathy for your + property. + +
+ +
+ {/* FORM */} +
+
+ Cover image +
+
+
+ +
+ +

or drag and drop

+
+

+ PNG, JPG, GIF up to 10MB +

+
+
+
+
+ {/* ----------------- */} +
+ Pictures of the place +
+
+
+ +
+ +

or drag and drop

+
+

+ PNG, JPG, GIF up to 10MB +

+
+
+
+
+
+ + ); +}; + +export default PageAddListing7;