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

30 lines
816 B
TypeScript
Raw Normal View History

2024-11-26 17:00:20 +00:00
"use client";
2024-12-04 14:12:10 +00:00
import SearchSection from "@/components/landing-page/SearchSection";
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 Navbar from "@/components/landing-page/navbar";
import Hero from "@/components/landing-page/hero";
import Footer from "@/components/landing-page/footer";
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-04 14:12:10 +00:00
<Navbar />
2024-11-26 17:00:20 +00:00
<Hero />
<SearchSection />
2024-12-04 14:12:10 +00:00
<NewContent />
<PopularContent />
<ContentCategory />
<Coverage />
<Footer />
2024-11-26 03:09:48 +00:00
</>
);
};
2024-11-26 17:00:20 +00:00
export default Home;