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;