summaryrefslogtreecommitdiff
path: root/src/core/components
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2024-03-14 15:05:16 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2024-03-14 15:05:16 +0700
commita5444f8873f67a073f7a452213950a858629796d (patch)
treea33064feafe3d78172f5c7911826b250b01236e7 /src/core/components
parent87250dfd602212910cc6ff7419e827003f2169bf (diff)
Update footer
Diffstat (limited to 'src/core/components')
-rw-r--r--src/core/components/elements/Footer/BasicFooter.jsx20
1 files changed, 18 insertions, 2 deletions
diff --git a/src/core/components/elements/Footer/BasicFooter.jsx b/src/core/components/elements/Footer/BasicFooter.jsx
index 1f7e2fbd..aebe737a 100644
--- a/src/core/components/elements/Footer/BasicFooter.jsx
+++ b/src/core/components/elements/Footer/BasicFooter.jsx
@@ -42,6 +42,7 @@ const BasicFooter = () => {
<CustomerGuide />
<Payments />
<Shippings />
+ <Secures />
</div>
<div className='w-full mt-8 leading-5 text-caption-2 text-gray_r-12/80'>
@@ -85,6 +86,7 @@ const BasicFooter = () => {
<div className='grid grid-cols-1 gap-y-6'>
<Payments />
<Shippings />
+ <Secures />
</div>
</div>
@@ -384,7 +386,7 @@ const Payments = () => (
<div>
<div className={headerClassName}>Metode Pembayaran</div>
<NextImage
- src='/images/payment-method.png'
+ src='/images/footer/payment-method.png'
alt='Metode Pembayaran - Indoteknik'
width={512}
height={512}
@@ -398,7 +400,7 @@ const Shippings = () => (
<div>
<div className={headerClassName}>Jasa Pengiriman</div>
<NextImage
- src='/images/shippings.png'
+ src='/images/footer/shippings.png'
alt='Jasa Pengiriman - Indoteknik'
width={512}
height={512}
@@ -408,6 +410,20 @@ const Shippings = () => (
</div>
);
+const Secures = () => (
+ <div>
+ <div className={headerClassName}>Keamanan Belanja</div>
+ <NextImage
+ src='/images/footer/secures.png'
+ alt='Keamanan Belanja - Indoteknik'
+ width={512}
+ height={512}
+ quality={100}
+ className='w-full'
+ />
+ </div>
+);
+
const InternalItemLink = ({ href, children }) => (
<Link
href={href}