summaryrefslogtreecommitdiff
path: root/src/components/layouts/Footer.js
blob: d173a5257b1598a8898b237fb5c337e8ed97b48f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
import { 
  PhoneIcon,
  DevicePhoneMobileIcon,
  EnvelopeIcon
} from "@heroicons/react/24/outline";
import Image from "next/image";
import InstagramIcon from "@/icons/instagram.svg";
import LinkedinIcon from "@/icons/linkedin.svg";
import Link from "../elements/Link";

export default function Footer() {
  return (
    <div className="p-4 bg-gray_r-3">
      <div className="grid grid-cols-2 gap-x-2 mb-4">
        <div>
          <p className="font-medium mb-2">Kantor Pusat</p>
          <p className="text-gray_r-11 leading-6 text-caption-2">
            Jl. Bandengan Utara 85A No. 8-9 RT.3/RW.16, Penjaringan, Kec. Penjaringan
          </p>

          <p className="font-medium mb-2 mt-6">Layanan Informasi</p>
          <div className="flex items-center gap-x-2 text-gray_r-11 text-caption-2 mb-2">
            <PhoneIcon className="w-5 h-5 stroke-2"/>
            <a className="text-gray_r-11 font-normal" href="tel:02129338828">
              (021) 2933-8828
            </a>
            {'/'}
            <a className="text-gray_r-11 font-normal" href="tel:02129338829">
              29
            </a>
          </div>
          <div className="flex items-center gap-x-2 text-gray_r-11 text-caption-2 mb-2">
            <DevicePhoneMobileIcon className="w-5 h-5 stroke-2"/>
            <a className="text-gray_r-11 font-normal" href="https://wa.me/628128080622">
              0812-8080-622
            </a>
          </div>
          <div className="flex items-center gap-x-2 text-gray_r-11 text-caption-2">
            <EnvelopeIcon className="w-5 h-5 stroke-2"/>
            <a className="text-gray_r-11 font-normal" href="mailto:sales@indoteknik.com">
              sales@indoteknik.com
            </a>
          </div>

          <p className="font-medium mb-2 mt-6">Panduan Pelanggan</p>
          <div className="text-caption-2 flex flex-col gap-y-2">
            <Link className="text-gray_r-11 font-normal" href="/faqs">FAQ</Link>
            <Link className="text-gray_r-11 font-normal" href="/">Kebijakan Privasi</Link>
            <Link className="text-gray_r-11 font-normal" href="/">Pengajuan Tempo</Link>
            <Link className="text-gray_r-11 font-normal" href="/">Garansi Produk</Link>
            <Link className="text-gray_r-11 font-normal" href="/">Online Quotation</Link>
            <Link className="text-gray_r-11 font-normal" href="/">Pengiriman</Link>
            <Link className="text-gray_r-11 font-normal" href="/">Pembayaran</Link>
            <Link className="text-gray_r-11 font-normal" href="/">Syarat & Ketentuan</Link>

          </div>
        </div>
        <div>
          <p className="font-medium mb-2">Jam Operasional</p>
          <p className="text-gray_r-11 leading-6 text-caption-2">
            <span className="font-medium">Senin - Jumat:</span> 08:30 - 17:00
          </p>
          <p className="text-gray_r-11 leading-6 text-caption-2">
            <span className="font-medium">Sabtu:</span> 08:30 - 14:00
          </p>

          <p className="font-medium mb-2 mt-6">Temukan Kami</p>
          <div className="flex gap-x-2">
            <InstagramIcon className="w-5 h-5 stroke-gray_r-11" />
            <LinkedinIcon className="w-5 h-5 stroke-gray_r-11" />
          </div>

          <p className="font-medium mb-2 mt-6">Pembayaran</p>
          <div className="grid grid-cols-4 gap-2">
            <Image src="/images/payments/bca.webp" alt="BCA Payment" width={48} height={48} className="w-full" />
            <Image src="/images/payments/bca.webp" alt="BCA Payment" width={48} height={48} className="w-full" />
            <Image src="/images/payments/bca.webp" alt="BCA Payment" width={48} height={48} className="w-full" />
            <Image src="/images/payments/bca.webp" alt="BCA Payment" width={48} height={48} className="w-full" />
            <Image src="/images/payments/bca.webp" alt="BCA Payment" width={48} height={48} className="w-full" />
            <Image src="/images/payments/bca.webp" alt="BCA Payment" width={48} height={48} className="w-full" />
            <Image src="/images/payments/bca.webp" alt="BCA Payment" width={48} height={48} className="w-full" />
            <Image src="/images/payments/bca.webp" alt="BCA Payment" width={48} height={48} className="w-full" />
          </div>

          {/* <p className="font-medium mb-2 mt-6">Pengiriman</p> */}
        </div>
      </div>
      <h6 className="h2">PT. Indoteknik Dotcom Gemilang</h6>
    </div>
  );
}