2024-11-26 17:00:20 +00:00
|
|
|
"use client";
|
|
|
|
|
|
2024-12-05 14:56:27 +00:00
|
|
|
import SearchSection from "@/components/landing-page/search-section";
|
2024-12-04 14:12:10 +00:00
|
|
|
import NewContent from "@/components/landing-page/new-content";
|
|
|
|
|
import PopularContent from "@/components/landing-page/popular-content";
|
|
|
|
|
import ContentCategory from "@/components/landing-page/content-category";
|
|
|
|
|
import Coverage from "@/components/landing-page/coverage";
|
2024-12-25 00:45:56 +00:00
|
|
|
import Hero from "@/components/landing-page/hero";
|
|
|
|
|
import Footer from "@/components/landing-page/footer";
|
2024-12-06 19:15:06 +00:00
|
|
|
import Division from "@/components/landing-page/division";
|
2024-12-13 00:39:20 +00:00
|
|
|
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";
|
2025-01-16 16:55:04 +00:00
|
|
|
import NewsTicker from "@/components/landing-page/news-tickers";
|
2025-03-05 10:05:44 +00:00
|
|
|
import AreaCoverageWorkUnits from "@/components/landing-page/area-coverage-and-work-units";
|
2024-11-26 17:00:20 +00:00
|
|
|
|
|
|
|
|
const Home = ({ params: { locale } }: { params: { locale: string } }) => {
|
2024-11-26 03:09:48 +00:00
|
|
|
return (
|
2025-01-04 11:52:02 +00:00
|
|
|
<MountedProvider isProtected={false}>
|
2024-12-17 14:27:48 +00:00
|
|
|
<ReactLenis root>
|
2025-02-05 14:33:18 +00:00
|
|
|
<div className="pb-14">
|
|
|
|
|
<Navbar />
|
2025-05-20 07:08:49 +00:00
|
|
|
<Hero group="mabes" />
|
2025-02-05 14:33:18 +00:00
|
|
|
<SearchSection />
|
|
|
|
|
<NewContent group="mabes" type="latest" />
|
|
|
|
|
<NewContent group="mabes" type="popular" />
|
|
|
|
|
{/* <PopularContent /> */}
|
2025-05-05 14:53:47 +00:00
|
|
|
<ContentCategory group="mabes" type="popular" />
|
2025-03-05 10:05:44 +00:00
|
|
|
{/* <Coverage /> */}
|
|
|
|
|
{/* <Division /> */}
|
|
|
|
|
<AreaCoverageWorkUnits />
|
2025-02-05 14:33:18 +00:00
|
|
|
<Footer />
|
|
|
|
|
<NewsTicker />
|
|
|
|
|
</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;
|