17 lines
539 B
JavaScript
17 lines
539 B
JavaScript
import Link from "next/link";
|
|
|
|
export default function Allservices1() {
|
|
return (
|
|
<>
|
|
<section className="all_services__area-six">
|
|
<div className="container">
|
|
<h2>Are you ready to take your company's online presence to the next level?</h2>
|
|
<Link href="/schedule" className="btn" data-aos="fade-up" data-aos-delay={100}>
|
|
BOOK A DISCOVERY CALL
|
|
</Link>
|
|
</div>
|
|
</section>
|
|
</>
|
|
);
|
|
}
|