Files
dev-chiefworks 2ce13271d8 first commit
2024-01-10 11:05:21 -05:00

29 lines
687 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";
import Link from "next/link";
const CallToAction = () => {
return (
<div
className="
bg-wrapper
d-lg-flex
align-items-center
justify-content-between
"
>
<h2 className="font-gilroy-bold">
Dont find the answer? contact us for any query.
</h2>
<Link href="contact-cs">Contact us</Link>
<div className="bubble-one"></div>
<div className="bubble-two"></div>
<div className="bubble-three"></div>
<div className="bubble-four"></div>
<div className="bubble-five"></div>
</div>
// /.bg-wrapper
);
};
export default CallToAction;