diff --git a/src/app/(car-listings)/layout.tsx b/src/app/(car-listings)/layout.tsx new file mode 100644 index 0000000..11856fb --- /dev/null +++ b/src/app/(car-listings)/layout.tsx @@ -0,0 +1,59 @@ +import BgGlassmorphism from "@/components/BgGlassmorphism"; +import React, { ReactNode } from "react"; +import SectionHeroArchivePage from "../(server-components)/SectionHeroArchivePage"; +import heroRightImage from "@/images/hero-right-car.png"; +import BackgroundSection from "@/components/BackgroundSection"; +import SectionSliderNewCategories from "@/components/SectionSliderNewCategories"; +import SectionSubscribe2 from "@/components/SectionSubscribe2"; +import SectionGridAuthorBox from "@/components/SectionGridAuthorBox"; + +const Layout = ({ children }: { children: ReactNode }) => { + return ( +
+ + + {/* SECTION HERO */} +
+ + + 1512 cars + + } + /> +
+ + {/* SECTION */} + {children} + +
+ {/* SECTION 1 */} +
+ + +
+ + {/* SECTION */} + + + {/* SECTION */} +
+ + +
+
+
+ ); +}; + +export default Layout;