blogs to dmag

This commit is contained in:
hamid zarghami
2025-06-07 09:36:06 +03:30
parent 1a852837cf
commit 633e5ea147
26 changed files with 47 additions and 47 deletions
+72
View File
@@ -0,0 +1,72 @@
import Image from 'next/image'
import { FC } from 'react'
const ContactUs: FC = () => {
return (
<div className='w-full rounded-4xl bg-white p-4'>
<h4>
تماس با ما
</h4>
<div className='flex gap-4 mt-6'>
<a href='https://www.linkedin.com/company/danakcorporation/' target='_blank' className='flex-1 bg-[#0A66C2] text-white rounded-xl p-4'>
<Image
src='/images/linkedin3.svg'
alt='contact us'
width={25}
height={25}
className='size-6'
/>
<div className='mt-1.5'>
<h6 className='text-sm font-bold'>
لینکدین داناک
</h6>
<div className='text-xs mt-1'>
به ما بپیوندید
</div>
</div>
</a>
<a href='https://www.youtube.com/@danakcorp' target='_blank' className='flex-1 bg-[#FF0302] text-white rounded-xl p-4'>
<Image
src='/images/youtube.svg'
alt='contact us'
width={25}
height={25}
className='size-6'
/>
<div className='mt-1.5'>
<h6 className='text-sm font-bold'>
یوتیوب داناک
</h6>
<div className='text-xs mt-1'>
به ما بپیوندید
</div>
</div>
</a>
</div>
<a href='https://www.instagram.com/danak.corporation' target='_blank' className='flex-1 block instagram-gradient text-white rounded-xl p-4 mt-4'>
<Image
src='/images/instagram2.svg'
alt='contact us'
width={25}
height={25}
className='size-6'
/>
<div className='mt-1.5'>
<h6 className='text-sm font-bold'>
اینستاگرام داناک
</h6>
<div className='text-xs mt-1'>
به ما بپیوندید
</div>
</div>
</a>
</div>
)
}
export default ContactUs