web-mikul-news/app/category/health/page.tsx

38 lines
1.3 KiB
TypeScript
Raw Normal View History

2025-07-03 02:03:07 +00:00
import Author from "@/components/landing-page/author";
2025-09-17 06:24:41 +00:00
import DevelopmentNews from "@/components/landing-page/development/development-news";
2025-07-03 02:03:07 +00:00
import Footer from "@/components/landing-page/footer";
import Header from "@/components/landing-page/header";
2025-09-17 06:24:41 +00:00
import HealthNews from "@/components/landing-page/health/health-news";
2025-07-03 08:09:16 +00:00
import HeaderHealth from "@/components/landing-page/health/header-health";
2025-07-03 02:03:07 +00:00
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)]">
2026-02-01 14:38:20 +00:00
{/* <div className="fixed top-0 left-0 w-full h-auto z-0">
2025-07-03 02:03:07 +00:00
<Image
src="/rumput.jpg"
alt="Background"
width={1450}
height={600}
className="w-full h-auto object-cover"
priority
/>
2026-02-01 14:38:20 +00:00
</div> */}
2025-07-03 02:03:07 +00:00
<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
<HeaderHealth />
2025-09-17 06:24:41 +00:00
<HealthNews />
2025-07-03 02:03:07 +00:00
</div>
<Footer />
</div>
</div>
);
}