mediahub-fe/app/[locale]/page.tsx

28 lines
787 B
TypeScript
Raw Normal View History

2024-11-26 17:00:20 +00:00
"use client";
import SearchSection from "@/components/landing-page/search-section";
2024-12-25 00:45:56 +00:00
import Footer from "@/components/landing-page/footer";
import Navbar from "@/components/landing-page/navbar";
2024-12-17 14:27:48 +00:00
import { ReactLenis } from "@studio-freight/react-lenis";
2025-01-01 16:47:21 +00:00
import MountedProvider from "@/providers/mounted.provider";
import HeroNew from "@/components/landing-page/hero-new";
2024-11-26 17:00:20 +00:00
const Home = ({ params: { locale } }: { params: { locale: string } }) => {
2024-11-26 03:09:48 +00:00
return (
<MountedProvider isProtected={false}>
2024-12-17 14:27:48 +00:00
<ReactLenis root>
2025-06-02 01:00:01 +00:00
<div>
2025-02-05 14:33:18 +00:00
<Navbar />
<HeroNew group="mabes" />
<div className="flex-1 ">
<SearchSection />
</div>
2025-02-05 14:33:18 +00:00
<Footer />
</div>
2024-12-17 14:27:48 +00:00
</ReactLenis>
2025-01-01 16:47:21 +00:00
</MountedProvider>
2024-11-26 03:09:48 +00:00
);
};
2024-11-26 17:00:20 +00:00
export default Home;