31 lines
1.2 KiB
JavaScript
31 lines
1.2 KiB
JavaScript
import TestimonialSlider1 from '@/components/slider/TestimonialSlider1'
|
|
|
|
export default function Testimonial() {
|
|
return (
|
|
<>
|
|
|
|
<section className="testimonial-section sec-pad bg-color-1" id="testimonial">
|
|
<div className="bg-layer" style={{ backgroundImage: 'url(assets/images/background/testimonial-bg.jpg)' }}></div>
|
|
<div className="pattern-layer" style={{ backgroundImage: 'url(assets/images/shape/shape-21.webp)' }}></div>
|
|
<div className="auto-container">
|
|
<div className="row clearfix">
|
|
<div className="col-xl-6 col-lg-12 col-md-12 offset-xl-6 content-column">
|
|
<div className="content-box p_relative ml_45">
|
|
<div className="sec-title mb_50">
|
|
<span className="sub-title">Testimonials</span>
|
|
<h2>What Our Client Say About medimart</h2>
|
|
</div>
|
|
<div className="content-box">
|
|
{/*Theme Carousel*/}
|
|
<TestimonialSlider1 />
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</>
|
|
)
|
|
}
|