import { Button } from '@nextui-org/button'; import { Image } from '@nextui-org/react'; import { ChevronLeftWhite, ChevronRightWhite } from '../icons'; export default function CategorySatker() { const list = [ { img: "/temp/poldametro.svg", title: "Polda Metro Jaya" }, { img: "/temp/polda-sumut.svg", title: "Polda Sumatra Utara" }, { img: "/temp/polda-banten.svg", title: "Polda Banten" }, { img: "/temp/polda-jateng.svg", title: "Polda Jawa Tengah" }, { img: "/temp/polda-jatim.svg", title: "Polda Jawa Timur" }, ]; return (
Kategori Satker
{list.map((item, index) => (

{item.title}

))}
) }