diff options
Diffstat (limited to 'src/core/components/elements/Footer/SimpleFooter.jsx')
| -rw-r--r-- | src/core/components/elements/Footer/SimpleFooter.jsx | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/core/components/elements/Footer/SimpleFooter.jsx b/src/core/components/elements/Footer/SimpleFooter.jsx new file mode 100644 index 00000000..0fbc8f62 --- /dev/null +++ b/src/core/components/elements/Footer/SimpleFooter.jsx @@ -0,0 +1,43 @@ +import { + DevicePhoneMobileIcon, + EnvelopeIcon, + PhoneArrowUpRightIcon +} from '@heroicons/react/24/outline' + +const SimpleFooter = () => ( + <footer className='flex flex-wrap p-4 bg-gray_r-3 text-caption-1'> + <div className='w-full font-semibold mb-4 text-body-2'>Butuh bantuan? Hubungi Kami</div> + <div className='w-1/2 pr-2'> + <div className='font-semibold mb-3'>Hubungi Kami</div> + <ul className='flex flex-col gap-y-2'> + <li className='text-gray_r-12/80 flex items-center'> + <PhoneArrowUpRightIcon className='w-[18px] mr-2' /> + <a href='tel:02129338828'>(021) 2933-8828 / 29</a> + </li> + <li className='text-gray_r-12/80 flex items-center'> + <EnvelopeIcon className='w-[18px] mr-2' /> + <a href='mailto:sales@indoteknik.com'>sales@indoteknik.com</a> + </li> + <li className='text-gray_r-12/80 flex items-center'> + <DevicePhoneMobileIcon className='w-[18px] mr-2' /> + <a href='https://wa.me/+628128080622'>0812-8080-622</a> + </li> + </ul> + </div> + <div className='w-1/2 pl-2'> + <div className='font-semibold mb-3'>Jam Operasional</div> + <ul className='flex flex-col gap-y-1'> + <li> + <div className='text-gray_r-12 mb-0.5'>Senin - Jumat:</div> + <div className='text-gray_r-12/80'>08:30 - 17:00</div> + </li> + <li> + <div className='text-gray_r-12 mb-0.5'>Sabtu:</div> + <div className='text-gray_r-12/80'>08:30 - 14:00</div> + </li> + </ul> + </div> + </footer> +) + +export default SimpleFooter |
