'use client'; import { usePathname } from 'next/navigation'; import { FaBus, FaFacebookF, FaInstagram, FaTwitter } from 'react-icons/fa'; import styles from './Footer.module.css'; export default function Footer({ settings }: { settings?: any }) { const pathname = usePathname(); // Hide on admin routes if (pathname.startsWith('/admin')) { return null; } const brandName = settings?.brandName || 'AntarKota'; const logoIcon = settings?.logoIcon || null; const logoHighlight = settings?.logoHighlight || 'Kota'; const csPhone = settings?.csPhone || '0804-1-808-808'; const csWhatsapp = settings?.csWhatsapp || '+62 812-3456-7890'; const csEmail = settings?.csEmail || 'support@antarkota.com'; return ( ); }