From abf305533dd86129c9363fe51dce0439904dd87a Mon Sep 17 00:00:00 2001 From: John Doe Date: Tue, 12 Sep 2023 19:38:20 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20Implemented=20new=20features=20i?= =?UTF-8?q?n=20Layout=20-=20Added=20dynamic=20content=20rendering=20-=20In?= =?UTF-8?q?tegrated=20Redux=20for=20state=20management=20-=20Enhanced=20us?= =?UTF-8?q?er=20experience?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/(real-estate-listings)/layout.tsx | 43 +++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 src/app/(real-estate-listings)/layout.tsx 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;