parent
bf9ef453f6
commit
b23e05c682
6 changed files with 51 additions and 2 deletions
After Width: | Height: | Size: 3.7 KiB |
After Width: | Height: | Size: 287 B |
After Width: | Height: | Size: 287 B |
@ -0,0 +1,40 @@ |
||||
import React from "react"; |
||||
|
||||
import customerSupport from "../../assets/icons/customer-support.png"; |
||||
import lightGreenLine from "../../assets/icons/light-green-line.svg"; |
||||
import lightBlueLine from "../../assets/icons/light-blue-line.svg"; |
||||
|
||||
const ContactInfoSection = () => { |
||||
return ( |
||||
<section className="bg-midGrayBgColor relative flex flex-col sm:flex-row items-center justify-center p-4"> |
||||
{/* line */} |
||||
<img |
||||
src={lightBlueLine} |
||||
alt="" |
||||
className="hidden sm:block absolute right-72" |
||||
/> |
||||
{/* middle content */} |
||||
<img src={customerSupport} alt="" className="w-20 cursor-pointer" /> |
||||
<p className="mr-0 sm:mr-10 mt-5 sm:mt-0 text-sm text-darkCrimsonTextColor leading-6"> |
||||
<span className="text-lightBlueTextColor2">7 </span> |
||||
روز هفته |
||||
<span className="text-lightBlueTextColor2"> 24 </span> |
||||
ساعته |
||||
<br /> |
||||
منتظر شنیدن صدای گرمتان هستیم |
||||
</p> |
||||
<div className="mr-0 sm:mr-10 mt-5 sm:mt-0"> |
||||
<p className="text-sm text-darkCrimsonTextColor">021654412</p> |
||||
<p className="text-sm text-darkCrimsonTextColor">info@danovin.ir</p> |
||||
</div> |
||||
{/* line */} |
||||
<img |
||||
src={lightGreenLine} |
||||
alt="" |
||||
className="hidden sm:block absolute left-72" |
||||
/> |
||||
</section> |
||||
); |
||||
}; |
||||
|
||||
export default ContactInfoSection; |
Loading…
Reference in new issue