2025-02-24 16:36:33 +00:00
|
|
|
"use client";
|
|
|
|
|
|
|
|
|
|
import React from "react";
|
|
|
|
|
import NavbarKaltara from "./components/navbar-kaltara";
|
|
|
|
|
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-02-24 16:36:33 +00:00
|
|
|
|
|
|
|
|
const PoldaKaltara = () => {
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
<NavbarKaltara />
|
|
|
|
|
<HeroKaltara />
|
2025-03-05 10:05:44 +00:00
|
|
|
<LatestNews type="latest" />
|
|
|
|
|
<LatestNews type="popular" />
|
|
|
|
|
{/* <PopularNews /> */}
|
2025-02-26 12:20:08 +00:00
|
|
|
<SocialMedia />
|
2025-02-24 16:36:33 +00:00
|
|
|
<NationalNews />
|
|
|
|
|
<RegionalNews />
|
|
|
|
|
<ContactUs />
|
2025-02-26 12:20:08 +00:00
|
|
|
<NewsTickerKaltara />
|
2025-02-24 16:36:33 +00:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default PoldaKaltara;
|