40 lines
1.4 KiB
JavaScript
40 lines
1.4 KiB
JavaScript
import Link from "next/link";
|
||
const AboutCallAction2 = () => {
|
||
return (
|
||
<section className="cta-area py-100 rel z-1 bgc-primary" style={{
|
||
backgroundImage: "url(/assets/images/testimonials/testimonials-two-bg.png)"
|
||
}} >
|
||
<div className="container">
|
||
<div className="row">
|
||
<div className="col-lg-5 col-md-8">
|
||
<div className="cta-content">
|
||
<div className="section-title text-white mb-20">
|
||
<span className="sub-title mb-5 text-white">Craving Authentic Indian Flavors?</span>
|
||
<h2>Don’t wait—call us now to place your order!</h2>
|
||
</div>
|
||
<Link href="/contact-us" className="theme-btn style-three">
|
||
Call Us <i className="far fa-arrow-alt-right" />
|
||
</Link>
|
||
{/* <div
|
||
className="cta-badge"
|
||
style={{
|
||
backgroundImage: "url(/assets/images/shapes/cta-shape.png)",
|
||
}}
|
||
>
|
||
<span>
|
||
quality
|
||
<br /> food
|
||
</span>
|
||
</div> */}
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div
|
||
className="cta-bg"
|
||
style={{ backgroundImage: "url(/assets/images/about/about-3.webp)" }}
|
||
/>
|
||
</section>
|
||
);
|
||
};
|
||
export default AboutCallAction2; |