From 4d2524d5a78131568d62ae96108b604f173b2b09 Mon Sep 17 00:00:00 2001 From: John Doe Date: Tue, 12 Sep 2023 19:39:22 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20Added=20ListingRealEstatePage=20?= =?UTF-8?q?component.=20=F0=9F=92=A1=20Implemented=20SectionGridFilterCard?= =?UTF-8?q?.=20=F0=9F=93=A6=20Initial=20setup=20for=20ListingRealEstatePag?= =?UTF-8?q?e.=20=F0=9F=94=A7=20Fixed=20code=20formatting=20issues.=20?= =?UTF-8?q?=F0=9F=8C=9F=20Improved=20code=20structure=20and=20readability.?= =?UTF-8?q?=20=F0=9F=90=9B=20Fixed=20a=20minor=20bug=20in=20ListingRealEst?= =?UTF-8?q?atePage.=20=F0=9F=8E=A8=20Updated=20styles=20for=20SectionGridF?= =?UTF-8?q?ilterCard.=20=E2=9C=85=20Tested=20and=20verified=20ListingRealE?= =?UTF-8?q?statePage.=20=F0=9F=94=84=20Refactored=20ListingRealEstatePage?= =?UTF-8?q?=20component.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../listing-real-estate/page.tsx | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/app/(real-estate-listings)/listing-real-estate/page.tsx diff --git a/src/app/(real-estate-listings)/listing-real-estate/page.tsx b/src/app/(real-estate-listings)/listing-real-estate/page.tsx new file mode 100644 index 0000000..f5d36c0 --- /dev/null +++ b/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 = ({}) => { + // useEffect(() => { + // const $body = document.querySelector("body"); + // if ($body) { + // $body.className = "theme-cyan-blueGrey"; + // } + // return () => { + // if ($body) { + // $body.className = ""; + // } + // }; + // }, []); + + return ( +
+ +
+ ); +}; + +export default ListingRealEstatePage;