diff options
| -rw-r--r-- | public/images/footer/payment-method.png | bin | 0 -> 152612 bytes | |||
| -rw-r--r-- | public/images/footer/secures.png | bin | 0 -> 27953 bytes | |||
| -rw-r--r-- | public/images/footer/shippings.png (renamed from public/images/shippings.png) | bin | 129332 -> 129332 bytes | |||
| -rw-r--r-- | public/images/payment-method.png | bin | 166459 -> 0 bytes | |||
| -rw-r--r-- | src/core/components/elements/Footer/BasicFooter.jsx | 20 |
5 files changed, 18 insertions, 2 deletions
diff --git a/public/images/footer/payment-method.png b/public/images/footer/payment-method.png Binary files differnew file mode 100644 index 00000000..258a2992 --- /dev/null +++ b/public/images/footer/payment-method.png diff --git a/public/images/footer/secures.png b/public/images/footer/secures.png Binary files differnew file mode 100644 index 00000000..b9ab4c44 --- /dev/null +++ b/public/images/footer/secures.png diff --git a/public/images/shippings.png b/public/images/footer/shippings.png Binary files differindex 59c28ee3..59c28ee3 100644 --- a/public/images/shippings.png +++ b/public/images/footer/shippings.png diff --git a/public/images/payment-method.png b/public/images/payment-method.png Binary files differdeleted file mode 100644 index 2c3a57c6..00000000 --- a/public/images/payment-method.png +++ /dev/null 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} |
