web-info-kreasi/app/page.tsx

21 lines
604 B
TypeScript
Raw Normal View History

2025-10-06 05:57:03 +00:00
import BottomArticlesSection from "@/components/landing-page/bottom-article";
import Footer from "@/components/landing-page/footer";
import Header from "@/components/landing-page/header";
import Navbar from "@/components/landing-page/navbar";
import News from "@/components/landing-page/news";
export default function Home() {
return (
<div className="flex min-h-screen flex-col font-[family-name:var(--font-geist-sans)] bg-white">
<Navbar />
<div className="flex-1">
<Header />
<BottomArticlesSection />
</div>
<News />
<Footer />
</div>
);
}