Browse Source

🔧 Fixed layout issue

🌟 Improved map integration
🚗 Added car listing component
🐛 Squashed a bug
main
John Doe 1 year ago
parent
commit
8ccf7e2921
  1. 14
      src/app/(car-listings)/listing-car-map/page.tsx

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

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