diff --git a/src/app/(real-estate-listings)/layout.tsx b/src/app/(real-estate-listings)/layout.tsx new file mode 100644 index 0000000..cde549a --- /dev/null +++ b/src/app/(real-estate-listings)/layout.tsx @@ -0,0 +1,43 @@ +import BackgroundSection from "@/components/BackgroundSection"; +import SectionGridAuthorBox from "@/components/SectionGridAuthorBox"; +import SectionSliderNewCategories from "@/components/SectionSliderNewCategories"; +import SectionSubscribe2 from "@/components/SectionSubscribe2"; +import React, { ReactNode } from "react"; +import SectionHero2ArchivePage from "../(server-components)/SectionHero2ArchivePage"; + +const Layout = ({ children }: { children: ReactNode }) => { + return ( +
+
+ +
+ + {children} + +
+ {/* SECTION 1 */} +
+ + +
+ + {/* SECTION */} + + + {/* SECTION */} +
+ + +
+
+
+ ); +}; + +export default Layout;