import { Button } from "@/components/ui/button"; import { Link } from "@/i18n/routing"; import { Icon } from "@iconify/react/dist/iconify.js"; import Image from "next/image"; import React from "react"; type Channel = { name: string; logo: string; url: string; }; const channels: Channel[] = [ { name: "Divisi Humas Polri", logo: "/assets/portal-humas.png", url: "https://portal.humas.polri.go.id/", }, { name: "Media Hub", logo: "/assets/mediahub-logo.gif", url: "/polda/kaltara", }, { name: "SPIT", logo: "/assets/logo-spit.png", url: "https://spit.humas.polri.go.id/", }, { name: "Polri TV", logo: "/assets/polriTv.png", url: "https://tvradio.polri.go.id/", }, { name: "TBNews", logo: "/assets/img/logo-tbn.png", url: "/tbnews/polda-kaltara", }, { name: "INP", logo: "/assets/logo-inp.png", url: "https://inp.polri.go.id/", }, ]; const ContactUsKaltara = () => { return (

Channel Divisi Humas Polri

{/* Mobile version pakai grid, Desktop pakai flex */}
{channels.map((channel, index) => (
{channel.name}
))}
{/* Logo */}
logo {/*

Copyright @TribrataNews Kaltara

*/}
{/* Contact Us */}

Kontak Kami


Jalan Komjen Dr. H.M. Jasin No.86, Bumi Rahayu, Kec. Tj. Selor, Kabupaten Bulungan, Kalimantan Utara 77212

Hotline Divisi HumasPolri (021) 72120599

{" "} Call Center 110

ppid@polri.go.id

{/* Links */}

Tautan


Tentang Kami{" "} Redaksi Pedoman Media Siber Index
{/* login */}
{/* Social Media */} {/*

Sosial Media Humas


*/}
); }; export default ContactUsKaltara;