31 lines
947 B
TypeScript
31 lines
947 B
TypeScript
"use client";
|
|
|
|
import SearchSection from "@/components/landing-page/search-section";
|
|
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";
|
|
import Hero from "@/components/landing-page/Hero";
|
|
import Footer from "@/components/landing-page/Footer";
|
|
import Division from "@/components/landing-page/division";
|
|
import Navbar from "@/components/landing-page/Navbar";
|
|
|
|
const Home = ({ params: { locale } }: { params: { locale: string } }) => {
|
|
return (
|
|
<>
|
|
<Navbar />
|
|
<Hero />
|
|
<SearchSection />
|
|
<NewContent type="latest" />
|
|
<NewContent type="popular" />
|
|
{/* <PopularContent /> */}
|
|
<ContentCategory />
|
|
<Coverage />
|
|
<Division />
|
|
<Footer />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Home;
|