2025-09-16 08:29:07 +00:00
|
|
|
import Category from "@/components/landing-page/category";
|
|
|
|
|
import Footer from "@/components/landing-page/footer";
|
|
|
|
|
import Header from "@/components/landing-page/header";
|
|
|
|
|
import MediaUpdate from "@/components/landing-page/media-update";
|
|
|
|
|
import Navbar from "@/components/landing-page/navbar";
|
|
|
|
|
|
|
|
|
|
export default function Home() {
|
|
|
|
|
return (
|
|
|
|
|
<div className="relative min-h-screen font-[family-name:var(--font-geist-sans)]">
|
2026-02-05 11:02:24 +00:00
|
|
|
<div className="relative z-10 bg-white dark:bg-default-50 w-full mx-auto">
|
2025-10-12 04:15:40 +00:00
|
|
|
<Navbar />
|
2025-09-16 08:29:07 +00:00
|
|
|
<div className="flex-1">
|
|
|
|
|
<Header />
|
|
|
|
|
</div>
|
|
|
|
|
<MediaUpdate />
|
|
|
|
|
<Category />
|
|
|
|
|
<Footer />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|