Shivasakthi-Restarunt/components/About/AboutCallAction2.js

40 lines
1.4 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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>Dont waitcall 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;