53 lines
1.7 KiB
JavaScript
53 lines
1.7 KiB
JavaScript
import Link from "next/link";
|
||
const AboutCallAction = () => {
|
||
return (
|
||
|
||
<section
|
||
className="booking-table-area-two bgs-cover py-100 rel z-1 overlay"
|
||
style={{
|
||
backgroundImage:
|
||
"url(/assets/images/about/bg-about.webp)",
|
||
}}
|
||
>
|
||
<div className="container">
|
||
<div className="row justify-content-between align-items-center">
|
||
{/* <div
|
||
className="col-lg-5"
|
||
data-aos="fade-left"
|
||
data-aos-duration={1500}
|
||
data-aos-offset={50}
|
||
>
|
||
<div className="section-title mt-50 text-white mb-50">
|
||
<h2>
|
||
We Offer quality service That Customers Needs for health
|
||
food
|
||
</h2>
|
||
</div>
|
||
</div> */}
|
||
<div
|
||
className="col-xl-12 col-lg-12 text-center"
|
||
data-aos="fade-up"
|
||
data-aos-duration={1500}
|
||
data-aos-offset={50}
|
||
>
|
||
<div className="booking-table-content style-two rmt-55">
|
||
{/* <a
|
||
href="https://www.youtube.com/watch?v=9Y7ma241N8k"
|
||
className="mfp-iframe video-play"
|
||
>
|
||
<i className="fas fa-play" />
|
||
</a> */}
|
||
<div className="section-title mt-50 text-white mb-50">
|
||
<span className="sub-title mb-5">Canada’s First South Indian Dining Experience with a Musical Twist</span>
|
||
<h2>
|
||
Indian Flavors with Live Melodies
|
||
</h2>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
);
|
||
};
|
||
export default AboutCallAction; |