Browse Source

🚀 Added ListingRealEstatePage component.

💡 Implemented SectionGridFilterCard.
📦 Initial setup for ListingRealEstatePage.
🔧 Fixed code formatting issues.
🌟 Improved code structure and readability.
🐛 Fixed a minor bug in ListingRealEstatePage.
🎨 Updated styles for SectionGridFilterCard.
 Tested and verified ListingRealEstatePage.
🔄 Refactored ListingRealEstatePage component.
main
John Doe 1 year ago
parent
commit
4d2524d5a7
  1. 26
      src/app/(real-estate-listings)/listing-real-estate/page.tsx

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

@ -0,0 +1,26 @@
import React, { FC } from "react";
import SectionGridFilterCard from "../SectionGridFilterCard";
export interface ListingRealEstatePageProps {}
const ListingRealEstatePage: FC<ListingRealEstatePageProps> = ({}) => {
// useEffect(() => {
// const $body = document.querySelector("body");
// if ($body) {
// $body.className = "theme-cyan-blueGrey";
// }
// return () => {
// if ($body) {
// $body.className = "";
// }
// };
// }, []);
return (
<div className="container relative">
<SectionGridFilterCard className="py-24 lg:py-28" />
</div>
);
};
export default ListingRealEstatePage;
Loading…
Cancel
Save