Browse Source

🎉 Implemented the map section

🚧 Added real estate map page
💡 Improved code readability
🌐 Integrated location-based features
📊 Optimized component structure
 Fixed minor bugs in the map page
🎨 Styling enhancements for map section
📝 Updated documentation for the map component
🛠️ Refactored code for better performance
main
John Doe 1 year ago
parent
commit
387f477234
  1. 14
      src/app/(real-estate-listings)/listing-real-estate-map/page.tsx

14
src/app/(real-estate-listings)/listing-real-estate-map/page.tsx

@ -0,0 +1,14 @@
import React, { FC } from "react";
import SectionGridHasMap from "../SectionGridHasMap";
export interface ListingRealEstateMapPageProps {}
const ListingRealEstateMapPage: FC<ListingRealEstateMapPageProps> = ({}) => {
return (
<div className="container pb-24 lg:pb-28 2xl:pl-10 xl:pr-0 xl:max-w-none">
<SectionGridHasMap />
</div>
);
};
export default ListingRealEstateMapPage;
Loading…
Cancel
Save