Files
CHIEFSOFT\ameye d8c7ec4866 first commit
2025-02-12 23:25:43 -05:00

36 lines
868 B
React
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 React from "react";
const CallToAction = () => {
return (
<div className="container">
<div className="row">
<div
className="col-xl-8 col-lg-11 m-auto"
data-aos="fade-up"
data-aos-duration="1200"
>
<div className="title-style-seven text-center">
<h2>200k+ Satisfied Client Try it now!</h2>
<p>Try it risk free we dont charge cancellation fees.</p>
</div>
{/* <!-- /.title-style-six --> */}
</div>
</div>
{/* End .row */}
<div
className="text-center mt-50"
data-aos="fade-up"
data-aos-duration="1200"
data-aos-delay="150"
>
<a href="#" className="theme-btn-fourteen">
Create my survay
</a>
</div>
</div>
);
};
export default CallToAction;