Skip to content

Commit

Permalink
update lading page
Browse files Browse the repository at this point in the history
  • Loading branch information
musiur committed Jan 6, 2025
1 parent d5b7e38 commit e7117ce
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 5 deletions.
14 changes: 14 additions & 0 deletions src/app/landing/_utils/sections/cta.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import ShimmerButton from "@/components/magicui/shimmer-button";
import Link from "next/link";

const LandingCTASection = () => {
return <div className="max-w-md px-4 mx-auto section space-y-4 text-center">
<h2>Let&apos;s Meet and Make Your Business Thrive!</h2>
<p>This is a no-commitment, free strategy session where we&apos;ll discuss your business goals and challenges. <span>Limited slots available—book now to secure your spot!</span></p>
<Link href="/#contact" className="inline-block">
<ShimmerButton>Book Your Free Strategy Session Now!</ShimmerButton>
</Link>
</div>;
};

export default LandingCTASection;
12 changes: 7 additions & 5 deletions src/app/landing/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,17 @@ import LandingAboutSection from "./_utils/sections/about";
import LandingProofSection from "./_utils/sections/proof";
import LandingReviewSection from "./_utils/sections/review";
import LandingVisualsSection from "./_utils/sections/visuals";
import LandingCTASection from "./_utils/sections/cta";

const LandingPage = () => {
return (
<Fragment>
<LandingHeroSection />
<LandingAboutSection />
<LandingProofSection />
<LandingReviewSection />
<LandingVisualsSection />
<LandingHeroSection />
<LandingAboutSection />
<LandingProofSection />
<LandingReviewSection />
<LandingVisualsSection />
<LandingCTASection />
</Fragment>
);
};
Expand Down

0 comments on commit e7117ce

Please sign in to comment.