2025-07-03 02:03:07 +00:00
|
|
|
import Author from "@/components/landing-page/author";
|
2025-09-17 06:24:41 +00:00
|
|
|
import CitizenNews from "@/components/landing-page/citizen-news/citizen-news";
|
2025-07-03 08:09:16 +00:00
|
|
|
import HeaderCitizen from "@/components/landing-page/citizen-news/header-citizen";
|
2025-07-03 02:03:07 +00:00
|
|
|
import Footer from "@/components/landing-page/footer";
|
|
|
|
|
import Header from "@/components/landing-page/header";
|
|
|
|
|
import Latest from "@/components/landing-page/latest";
|
|
|
|
|
import LatestandPopular from "@/components/landing-page/latest-and-popular";
|
|
|
|
|
import Navbar from "@/components/landing-page/navbar";
|
|
|
|
|
import News from "@/components/landing-page/news";
|
|
|
|
|
import Image from "next/image";
|
|
|
|
|
|
2025-07-03 08:09:16 +00:00
|
|
|
export default function Development() {
|
2025-07-03 02:03:07 +00:00
|
|
|
return (
|
|
|
|
|
<div className="relative min-h-screen font-[family-name:var(--font-geist-sans)]">
|
|
|
|
|
<div className="fixed top-0 left-0 w-full h-auto z-0">
|
|
|
|
|
<Image
|
|
|
|
|
src="/rumput.jpg"
|
|
|
|
|
alt="Background"
|
|
|
|
|
width={1450}
|
|
|
|
|
height={600}
|
|
|
|
|
className="w-full h-auto object-cover"
|
|
|
|
|
priority
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="relative z-10 bg-[#F2F4F3] max-w-7xl mx-auto">
|
|
|
|
|
<Navbar />
|
|
|
|
|
<div className="flex-1">
|
2025-07-03 08:09:16 +00:00
|
|
|
<HeaderCitizen />
|
2025-09-17 06:24:41 +00:00
|
|
|
<CitizenNews />
|
2025-07-03 02:03:07 +00:00
|
|
|
</div>
|
|
|
|
|
<Footer />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|