Files
CHIEFSOFT\ameye 7470750413 first commit
2023-09-26 13:50:01 -04:00

31 lines
1.2 KiB
JavaScript
Raw Permalink 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 ReviewSlider1 from "../slider/ReviewSlider1"
export default function Reviews1_1() {
return (
<>
<section id="reviews-1" className="pt-100 shape--06 shape--gr-whitesmoke reviews-section">
<div className="container">
{/* SECTION TITLE */}
<div className="row justify-content-center">
<div className="col-md-10 col-lg-9">
<div className="section-title mb-70">
{/* Title */}
<h2 className="s-50 w-700">Heres what our amazing clients are saying</h2>
{/* Text */}
<p className="s-21 color--grey">Ligula risus auctor tempus magna feugiat lacinia.</p>
</div>
</div>
</div>
{/* TESTIMONIALS CONTENT */}
<div className="row">
<div className="col">
<ReviewSlider1 />
</div>
</div> {/* END TESTIMONIALS CONTENT */}
</div> {/* End container */}
</section>
</>
)
}