70 lines
2.2 KiB
JavaScript
70 lines
2.2 KiB
JavaScript
import React from "react";
|
|
import Image from "next/image";
|
|
import AnimatedText from "@/components/common/AnimatedText";
|
|
export default function ContactInfo() {
|
|
return (
|
|
<section className="contact-info-section fix section-padding">
|
|
<div className="container">
|
|
<div className="section-title text-center">
|
|
<h6 className="wow fadeInUp">
|
|
<i className="fa-regular fa-arrow-left-long" />
|
|
CONTACT US
|
|
<i className="fa-regular fa-arrow-right-long" />
|
|
</h6>
|
|
<h2 className="splt-txt wow">
|
|
<AnimatedText text="Our Contact Information" />
|
|
</h2>
|
|
</div>
|
|
<div className="row">
|
|
<div
|
|
className="col-xxl-6 col-xl-6 col-lg-6 col-md-6 wow fadeInUp"
|
|
data-wow-delay=".2s"
|
|
>
|
|
<div className="contact-box-items">
|
|
<div className="icon">
|
|
<Image
|
|
src="/assets/img/icon/18.svg"
|
|
width={50}
|
|
height={50}
|
|
alt="img"
|
|
/>
|
|
</div>
|
|
<div className="content">
|
|
<h3>Our Address</h3>
|
|
<p>
|
|
SF NO 181/2,
|
|
BS NAGAR, SULUR,
|
|
IRUGUR, COIMBATORE PIN CODE : 641402
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div
|
|
className="col-xxl-6 col-xl-6 col-lg-6 col-md-6 wow fadeInUp"
|
|
data-wow-delay=".4s"
|
|
>
|
|
<div className="contact-box-items">
|
|
<div className="icon">
|
|
<Image
|
|
src="/assets/img/icon/19.svg"
|
|
width={46}
|
|
height={28}
|
|
alt="img"
|
|
/>
|
|
</div>
|
|
<div className="content">
|
|
<h3>Contact</h3>
|
|
<p>
|
|
Mobile :<a href="tel: +91-9751463748"> +91-9751463748</a> <br />
|
|
Email :
|
|
<a href="mailto:info@cibusindustries.com"> info@cibusindustries.com</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|