first commit

This commit is contained in:
mukesh13
2025-07-30 13:44:47 +05:30
commit 6c0c0e3d1d
494 changed files with 57695 additions and 0 deletions

View File

@ -0,0 +1,28 @@
import React from "react";
import Link from "next/link";
export default function Cta() {
return (
<div className="tf-container-2 tf-spacing-45 pt-0">
<div className="banner-CTA">
<h1 className="text_white split-text effect-right">
Ready to start a new project?
</h1>
<div className="bot flex-wrap-md d-flex align-items-end justify-content-between gap_12">
<p className="text-body-1 text_white split-text split-lines-transform">
Our expert marketing consulting services are designed to help your
business unlock its full potential. From identifying growth
opportunities
</p>
<Link
href={`/pricing`}
className="tf-btn btn-white2 wow animate__fadeInRight animate__animated"
data-wow-delay="0s"
>
<span className="text-body-3">Get Started</span>
<span className="bg-effect" />
</Link>
</div>
</div>
</div>
);
}