From ffa261e6adef70a2845878cf93e6e492eb8cee62 Mon Sep 17 00:00:00 2001 From: Rafi Zadanly Date: Mon, 27 Feb 2023 10:49:45 +0700 Subject: footer --- .../components/elements/Footer/BasicFooter.jsx | 269 +++++++++++++++++++++ 1 file changed, 269 insertions(+) create mode 100644 src/core/components/elements/Footer/BasicFooter.jsx (limited to 'src/core/components/elements') diff --git a/src/core/components/elements/Footer/BasicFooter.jsx b/src/core/components/elements/Footer/BasicFooter.jsx new file mode 100644 index 00000000..2831d4d6 --- /dev/null +++ b/src/core/components/elements/Footer/BasicFooter.jsx @@ -0,0 +1,269 @@ +import NextImage from 'next/image' +import IndoteknikLogo from '@/images/logo.png' +import { + DevicePhoneMobileIcon, + EnvelopeIcon, + MapPinIcon, + PhoneArrowUpRightIcon +} from '@heroicons/react/24/outline' +import Link from '../Link/Link' + +const BasicFooter = () => { + return ( + + ) +} + +const headerClassName = 'font-semibold mb-2' + +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 = () => ( +
+
Panduan Pelanggan
+ +
+) + +const InformationCenter = () => ( +
+
Layanan Informasi
+ +
+) + +const OpenHours = () => ( +
+
Jam Operasional
+ +
+) + +const SocialMedias = () => ( +
+
Temukan Kami
+
+ + + + +
+
+) + +const Payments = () => ( +
+
Pembayaran
+
+ + + + + + + + +
+
+) + +const InternalItemLink = ({ href, children }) => ( + + {children} + +) + +export default BasicFooter -- cgit v1.2.3