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-12 18:38:15 +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";
|
2024-11-26 17:00:20 +00:00
|
|
|
|
|
|
|
|
const Home = ({ params: { locale } }: { params: { locale: string } }) => {
|
2024-11-26 03:09:48 +00:00
|
|
|
return (
|
|
|
|
|
<>
|
2024-12-17 14:27:48 +00:00
|
|
|
<ReactLenis root>
|
|
|
|
|
<Navbar />
|
|
|
|
|
<Hero />
|
|
|
|
|
<SearchSection />
|
|
|
|
|
<NewContent type="latest" />
|
|
|
|
|
<NewContent type="popular" />
|
|
|
|
|
{/* <PopularContent /> */}
|
|
|
|
|
<ContentCategory />
|
|
|
|
|
<Coverage />
|
|
|
|
|
<Division />
|
|
|
|
|
<Footer />
|
|
|
|
|
</ReactLenis>
|
2024-11-26 03:09:48 +00:00
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
2024-11-26 17:00:20 +00:00
|
|
|
export default Home;
|