diff options
| author | trisusilo <tri.susilo@altama.co.id> | 2023-09-05 03:09:22 +0000 |
|---|---|---|
| committer | trisusilo <tri.susilo@altama.co.id> | 2023-09-05 03:09:22 +0000 |
| commit | a6f1daf3d6cbb6187628b13dfc0c31996c151727 (patch) | |
| tree | 7687a64c17357895709f015f07f97e691ebdca92 /src/core/components/elements/Footer | |
| parent | 6b1083de2c5ad57953c6653d00a42b2da3fea108 (diff) | |
| parent | 009aab3dfc5a08f19c8e147f380dc6517b9f6fd1 (diff) | |
Merged in CR/tampilan (pull request #58)
CR/tampilan
Diffstat (limited to 'src/core/components/elements/Footer')
| -rw-r--r-- | src/core/components/elements/Footer/BasicFooter.jsx | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/core/components/elements/Footer/BasicFooter.jsx b/src/core/components/elements/Footer/BasicFooter.jsx index 9f68c2f7..23bca677 100644 --- a/src/core/components/elements/Footer/BasicFooter.jsx +++ b/src/core/components/elements/Footer/BasicFooter.jsx @@ -83,7 +83,8 @@ const OfficeLocation = () => ( <div> <div className={headerClassName}>Kantor Pusat</div> <div className='leading-6 text-gray_r-12/80'> - Jl. Bandengan Utara 85A No. 8-9 RT.3/RW.16, Penjaringan, Kec. Penjaringan, Jakarta Utara + <a href='https://goo.gl/maps/3DCJxtki8jUV32pR7' target='_blank' rel='noreferrer' className='text-gray_r-12/80'> + Jl. Bandengan Utara 85A No. 8-9 RT.3/RW.16, Penjaringan, Kec. Penjaringan, Jakarta Utara</a> </div> </div> ) @@ -186,11 +187,11 @@ const InformationCenter = () => ( <ul className='flex flex-col gap-y-3'> <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> + <a href='tel:02129338828' target='_blank' rel='noreferrer'>(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> + <a href='mailto:sales@indoteknik.com' target='_blank' rel='noreferrer'>sales@indoteknik.com</a> </li> <li className='text-gray_r-12/80 flex items-center'> <DevicePhoneMobileIcon className='w-[18px] mr-2' /> @@ -239,6 +240,9 @@ const SocialMedias = () => ( <a target='_blank' rel='noreferrer' href='https://www.linkedin.com/company/pt-indoteknik-dotcom-gemilang/'> <NextImage src='/images/socials/Linkedin.png' alt='Linkedin Logo' width={24} height={24} /> </a> + <a target='_blank' rel='noreferrer' href='https://goo.gl/maps/GF8EmDjpQTHZPsJ1A'> + <NextImage src='/images/socials/g_maps.png' alt='Linkedin Logo' width={24} height={24} /> + </a> </div> </div> ) @@ -275,7 +279,7 @@ const Payments = () => ( ) const InternalItemLink = ({ href, children }) => ( - <Link href={href} className='!text-gray_r-12/80 font-normal line-clamp-1'> + <Link href={href} className='!text-gray_r-12/80 font-normal line-clamp-1' target="_blank" rel="noopener noreferrer"> {children} </Link> ) |
