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

31 lines
947 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-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-07 09:41:22 +00:00
import Hero from "@/components/landing-page/hero";
2024-12-04 14:12:10 +00:00
import Footer from "@/components/landing-page/footer";
import Division from "@/components/landing-page/division";
2024-12-12 15:27:00 +00:00
import Navbar from "@/components/landing-page/Navbar";
2024-11-26 17:00:20 +00:00
const Home = ({ params: { locale } }: { params: { locale: string } }) => {
2024-11-26 03:09:48 +00:00
return (
<>
<Navbar />
2024-11-26 17:00:20 +00:00
<Hero />
<SearchSection />
2024-12-09 16:09:42 +00:00
<NewContent type="latest" />
<NewContent type="popular" />
{/* <PopularContent /> */}
2024-12-04 14:12:10 +00:00
<ContentCategory />
<Coverage />
<Division />
<Footer />
2024-11-26 03:09:48 +00:00
</>
);
};
2024-11-26 17:00:20 +00:00
export default Home;