diff --git a/src/app/add-listing/[[...stepIndex]]/PageAddListing10.tsx b/src/app/add-listing/[[...stepIndex]]/PageAddListing10.tsx new file mode 100644 index 0000000..0a75d2e --- /dev/null +++ b/src/app/add-listing/[[...stepIndex]]/PageAddListing10.tsx @@ -0,0 +1,48 @@ +import StayCard from "@/components/StayCard"; +import { DEMO_STAY_LISTINGS } from "@/data/listings"; +import React, { FC } from "react"; +import ButtonPrimary from "@/shared/ButtonPrimary"; +import ButtonSecondary from "@/shared/ButtonSecondary"; +import { EyeIcon, PencilSquareIcon } from "@heroicons/react/24/outline"; +import { Route } from "@/routers/types"; + +export interface PageAddListing10Props {} + +const PageAddListing10: FC = () => { + return ( + <> +
+

Congratulations 🎉

+ + Excellent, congratulations on completing the listing, it is waiting to + be reviewed for publication + +
+
+ {/* FORM */} +
+

This is your listing

+
+ +
+
+ + + Edit + + + + + Preview + +
+
+ {/* */} + + ); +}; + +export default PageAddListing10;