import NextImage from 'next/image'; import IndoteknikLogo from '@/images/logo.png'; import { DevicePhoneMobileIcon, EnvelopeIcon, PhoneArrowUpRightIcon, } from '@heroicons/react/24/outline'; import Link from '../Link/Link'; import MobileView from '../../views/MobileView'; import DesktopView from '../../views/DesktopView'; import whatsappUrl from '@/core/utils/whatsappUrl'; const BasicFooter = () => { return ( <> ); }; const headerClassName = 'font-semibold mb-4'; const OfficeLocation = () => (
Kantor Pusat
Jl. Bandengan Utara 85A No. 8-9 RT.3/RW.16, Penjaringan, Kec. Penjaringan, Jakarta Utara
); const WarehouseLocation = () => (
Gudang Indoteknik
Jl. Bandengan Utara Komp. 85 A dan B, Penjaringan, Kec. Penjaringan, Jakarta Utara
); const AboutUs = () => (
Tentang Kami
); const CustomerGuide = () => (
Bantuan & Panduan
); const Form = () => (
Formulir
); const InformationCenter = () => (
Layanan Informasi
); const OpenHours = () => (
Jam Operasional
); const SocialMedias = () => (
Temukan Kami
); const Payments = () => (
Metode Pembayaran
); const Shippings = () => (
Jasa Pengiriman
); const Secures = () => (
Keamanan Belanja
); const InternalItemLink = ({ href, children }) => ( {children} ); export default BasicFooter;