"use client"; import { Instagram, ChevronLeft, ChevronRight } from "lucide-react"; import Image from "next/image"; import { useRef } from "react"; const logos = [ { src: "/mabes.png", href: "/public/publication/kl" }, { src: "/saw.png", href: "/" }, { src: "/mpr.png", href: "/" }, { src: "/dpr.png", href: "/" }, { src: "/ma.png", href: "/" }, { src: "/badan.png", href: "/" }, { src: "/kpk.png", href: "/" }, { src: "/pln.png", href: "/" }, ]; export default function Footer() { const scrollRef = useRef(null); const scroll = (direction: "left" | "right") => { if (scrollRef.current) { scrollRef.current.scrollBy({ left: direction === "left" ? -200 : 200, behavior: "smooth", }); } }; return ( ); }