28 lines
787 B
TypeScript
28 lines
787 B
TypeScript
"use client";
|
|
|
|
import SearchSection from "@/components/landing-page/search-section";
|
|
import Footer from "@/components/landing-page/footer";
|
|
import Navbar from "@/components/landing-page/navbar";
|
|
import { ReactLenis } from "@studio-freight/react-lenis";
|
|
import MountedProvider from "@/providers/mounted.provider";
|
|
import HeroNew from "@/components/landing-page/hero-new";
|
|
|
|
const Home = ({ params: { locale } }: { params: { locale: string } }) => {
|
|
return (
|
|
<MountedProvider isProtected={false}>
|
|
<ReactLenis root>
|
|
<div>
|
|
<Navbar />
|
|
<HeroNew group="mabes" />
|
|
<div className="flex-1 ">
|
|
<SearchSection />
|
|
</div>
|
|
<Footer />
|
|
</div>
|
|
</ReactLenis>
|
|
</MountedProvider>
|
|
);
|
|
};
|
|
|
|
export default Home;
|