Shivasakthi-Restarunt/components/About/AboutTestimonial.js
Alaguraj0361 107f07c035
Some checks failed
Build and Deploy Build Output / build (push) Has been cancelled
first commit
2025-09-26 21:09:39 +05:30

114 lines
5.6 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.

"use client";
import { sliderProps } from "@/utility/sliderProps";
import Slider from "react-slick";
const Testimonial = () => {
return (
<section
className="testimonials-two bgc-primary"
style={{
backgroundImage:
"url(/assets/images/testimonials/testimonials-two-bg.png)",
}}
>
<div className="row align-items-center">
<div className="col-lg-6">
<div className="why-choose-two-image">
<img
src="/assets/images/about/testimonial.webp"
alt="Testimonials" loading="lazy"
/>
</div>
</div>
<div className="col-lg-6">
<div className="testimonials-two-content rel z-1 text-center text-white p-45 rpy-55">
<div
className="section-title mb-20"
data-aos="fade-up"
data-aos-duration={1500}
data-aos-offset={50}
>
<span className="sub-title mb-5">customer feedback</span>
<h2>what have lots off happy customer explore feedback</h2>
</div>
<span className="marquee-wrap style-two">
<span className="marquee-inner left">review </span>
<span className="marquee-inner left">review </span>
<span className="marquee-inner left">review </span>
</span>
<Slider
{...sliderProps.testimonialsTwoCarousel}
className="testimonials-two-carousel"
data-aos="fade-up"
data-aos-delay={50}
data-aos-duration={1500}
data-aos-offset={50}
>
<div className="testimonial-two-item">
<div className="ratting">
<i className="fas fa-star text-white" />
<i className="fas fa-star text-white" />
<i className="fas fa-star text-white" />
<i className="fas fa-star text-white" />
<i className="fas fa-star text-white" />
</div>
<div className="text">
Visited this beautiful restaurant while nearby for a conference. The staff were welcoming from the very start! We started with the Gobi 65 which had light spice but a to. Of flavour. Then, we had the hakka noodles, masala dosa and chettinadu chicken curry which was so tasty. Our Server Gagan recommended it and Im glad he did. He was fantastic and if we are in town again, we will definitely return!
</div>
<span className="author">Cam Larocque</span>
{/* <span className="designation">Manager</span> */}
</div>
<div className="testimonial-two-item">
<div className="ratting">
<i className="fas fa-star text-white" />
<i className="fas fa-star text-white" />
<i className="fas fa-star text-white" />
<i className="fas fa-star text-white" />
<i className="fas fa-star text-white" />
</div>
<div className="text">
Good to have another new south india cuisine in GTA. The food was amazing, The service was good and fast, thanks for offering the milk burfi for tasting.
I have been to their other restaurant locations in GTA and KW area, the service and food was excellent. All the best for this new location. Must visit for guys looking to try south indian Biryani.
</div>
<span className="author">Sen K</span>
{/* <span className="designation">Manager</span> */}
</div>
<div className="testimonial-two-item">
<div className="ratting mb-3">
<i className="fas fa-star text-white" />
<i className="fas fa-star text-white" />
<i className="fas fa-star text-white" />
<i className="fas fa-star text-white" />
<i className="fas fa-star text-white" />
</div>
<div className="text">
Absolutely incredible experience! This Tamil restaurant is a hidden gem in Canada. The flavors are rich, authentic, and remind me of home. Each dish was perfectly spiced and cooked to perfection. The staff were warm, welcoming, and attentive, making the whole visit even more enjoyable. The ambiance is cozy yet vibrant, and you can tell they take pride in both their food and service. Highly recommend to anyone looking for a true taste of South Indian cuisine!
</div>
<span className="author">manimala s</span>
{/* <span className="designation">Manager</span> */}
</div>
{/* <div className="testimonial-two-item">
<div className="quote">
<i className="flaticon-quote" />
</div>
<div className="text">
Renowned for its versatility in the kitchen, Red King Crab can
prepared in various ways, from simple steaming or boiling to
elaborate preparations such as grilling incorporating weather
loving
</div>
<span className="author">Salvador I. Burton</span>
<span className="designation">Manager</span>
</div> */}
</Slider>
<div className="shape">
<img src="/assets/images/shapes/tomato.png" alt="Shape" loading="lazy" />
</div>
</div>
</div>
</div>
</section>
);
};
export default Testimonial;