From e7117ce62b4fe195be3057bd9649c590fd83f489 Mon Sep 17 00:00:00 2001 From: musiur Date: Mon, 6 Jan 2025 15:44:12 +0600 Subject: [PATCH] update lading page --- src/app/landing/_utils/sections/cta.tsx | 14 ++++++++++++++ src/app/landing/page.tsx | 12 +++++++----- 2 files changed, 21 insertions(+), 5 deletions(-) create mode 100644 src/app/landing/_utils/sections/cta.tsx diff --git a/src/app/landing/_utils/sections/cta.tsx b/src/app/landing/_utils/sections/cta.tsx new file mode 100644 index 0000000..c1e7f4c --- /dev/null +++ b/src/app/landing/_utils/sections/cta.tsx @@ -0,0 +1,14 @@ +import ShimmerButton from "@/components/magicui/shimmer-button"; +import Link from "next/link"; + +const LandingCTASection = () => { + return
+

Let's Meet and Make Your Business Thrive!

+

This is a no-commitment, free strategy session where we'll discuss your business goals and challenges. Limited slots available—book now to secure your spot!

+ + Book Your Free Strategy Session Now! + +
; +}; + +export default LandingCTASection; diff --git a/src/app/landing/page.tsx b/src/app/landing/page.tsx index c65b8ef..64c97e6 100644 --- a/src/app/landing/page.tsx +++ b/src/app/landing/page.tsx @@ -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 ( - - - - - + + + + + + ); };