Browse Source

🚀 Added a new component for client place description.

🛋️ Implemented a text area for describing accommodation features.
📝 Updated PageAddListing6 component for client descriptions.
🏡 Added a section for highlighting neighborhood features.
 Enhanced PageAddListing6 with a spacious text area.
🌟 Improved UI for client accommodation details.
📄 Implemented a description box for client information.
main
John Doe 1 year ago
parent
commit
4ca28f6cbb
  1. 25
      src/app/add-listing/[[...stepIndex]]/PageAddListing6.tsx

25
src/app/add-listing/[[...stepIndex]]/PageAddListing6.tsx

@ -0,0 +1,25 @@
import React, { FC } from "react";
import Textarea from "@/shared/Textarea";
export interface PageAddListing6Props {}
const PageAddListing6: FC<PageAddListing6Props> = () => {
return (
<>
<div>
<h2 className="text-2xl font-semibold">
Your place description for client
</h2>
<span className="block mt-2 text-neutral-500 dark:text-neutral-400">
Mention the best features of your accommodation, any special amenities
like fast Wi-Fi or parking, as well as things you like about the
neighborhood.
</span>
</div>
<Textarea placeholder="..." rows={14} />
</>
);
};
export default PageAddListing6;
Loading…
Cancel
Save