20 lines
559 B
TypeScript
20 lines
559 B
TypeScript
|
|
import Footer from "@/components/landing-page/footer";
|
||
|
|
import HeroNewsSectionPopular from "@/components/landing-page/header-popular";
|
||
|
|
|
||
|
|
import Navbar from "@/components/landing-page/navbar";
|
||
|
|
import Image from "next/image";
|
||
|
|
|
||
|
|
export default function Home() {
|
||
|
|
return (
|
||
|
|
<div className="relative min-h-screen font-[family-name:var(--font-geist-sans)]">
|
||
|
|
<div className="relative z-10 bg-[#F2F4F3] ">
|
||
|
|
<Navbar />
|
||
|
|
<div className="flex-1">
|
||
|
|
<HeroNewsSectionPopular />
|
||
|
|
</div>
|
||
|
|
<Footer />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|