2025-02-24 16:36:33 +00:00
|
|
|
"use client";
|
|
|
|
|
|
|
|
|
|
import React from "react";
|
|
|
|
|
import HeroKaltara from "./components/hero-kaltara";
|
|
|
|
|
import LatestNews from "./components/latest-news";
|
|
|
|
|
import PopularNews from "./components/popular-news";
|
|
|
|
|
import NationalNews from "./components/national-news";
|
|
|
|
|
import RegionalNews from "./components/regional-news";
|
|
|
|
|
import ContactUs from "./components/contact-us";
|
2025-02-26 12:20:08 +00:00
|
|
|
import SocialMedia from "./components/social-media";
|
|
|
|
|
import NewsTickerKaltara from "./components/news-tickers-kaltara";
|
2025-03-25 16:34:44 +00:00
|
|
|
import PpsSection from "./components/pps-section";
|
2025-04-25 02:54:23 +00:00
|
|
|
import ContactUsKaltara from "@/components/landing-page/landing-polda-kaltara/contact-us-kaltara";
|
2025-06-09 04:58:36 +00:00
|
|
|
import WelcomePolda from "@/components/landing-page/welcome-polda";
|
|
|
|
|
import LatestContentKaltara from "@/components/landing-page/landing-polda-kaltara/latest-content-kaltara";
|
|
|
|
|
import ContentCategoryKaltara from "@/components/landing-page/landing-polda-kaltara/content-category-kaltara";
|
2025-06-09 06:09:47 +00:00
|
|
|
import NavbarKaltaraTbnews from "./components/navbar-kaltara";
|
2025-02-24 16:36:33 +00:00
|
|
|
|
|
|
|
|
const PoldaKaltara = () => {
|
|
|
|
|
return (
|
2025-06-09 06:09:47 +00:00
|
|
|
<div>
|
|
|
|
|
<NavbarKaltaraTbnews />
|
|
|
|
|
<HeroKaltara />
|
|
|
|
|
<PpsSection />
|
|
|
|
|
<LatestNews type="latest" />
|
|
|
|
|
<LatestNews type="popular" />
|
|
|
|
|
{/* <PopularNews /> */}
|
|
|
|
|
<SocialMedia />
|
|
|
|
|
<NationalNews />
|
|
|
|
|
<RegionalNews />
|
|
|
|
|
{/* <ContactUs /> */}
|
|
|
|
|
<ContactUsKaltara />
|
|
|
|
|
<NewsTickerKaltara />
|
|
|
|
|
</div>
|
2025-06-09 04:58:36 +00:00
|
|
|
// <div>
|
|
|
|
|
// <NavbarKaltara />
|
2025-06-09 06:09:47 +00:00
|
|
|
// {/* <SearchSectionKaltara /> */}
|
|
|
|
|
// <WelcomePolda />
|
|
|
|
|
// <LatestContentKaltara group="polda" type="latest" />
|
|
|
|
|
// <LatestContentKaltara group="polda" type="popular" />
|
|
|
|
|
// <ContentCategoryKaltara type="" group="polda" />
|
2025-06-09 04:58:36 +00:00
|
|
|
// <ContactUsKaltara />
|
|
|
|
|
// <NewsTickerKaltara />
|
|
|
|
|
// </div>
|
2025-02-24 16:36:33 +00:00
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default PoldaKaltara;
|