From 6d5e5094268cc50497844ba62e6df169a45359d1 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 15:53:37 +0000 Subject: [PATCH] Update components/booking.tsx --- components/booking.tsx | 81 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 components/booking.tsx diff --git a/components/booking.tsx b/components/booking.tsx new file mode 100644 index 0000000..41483fa --- /dev/null +++ b/components/booking.tsx @@ -0,0 +1,81 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { motion } from "framer-motion"; +import { Calendar, CheckCircle2, Clock, Video } from "lucide-react"; + +export function Booking() { + return ( +
+ {/* Decorative elements */} +
+
+ + +
+ +
+ + Free Discovery Call +
+ + Ready to Scale Your Business? + + + Book a free 15-minute discovery call to discuss your growth challenges and see if we're a good fit to work together. + + +
+ {[ + { icon: Clock, text: "15-minute focused strategy session", color: "text-blue-400" }, + { icon: Video, text: "Face-to-face Zoom consultation", color: "text-purple-400" }, + { icon: CheckCircle2, text: "Actionable growth roadmap", color: "text-emerald-400" } + ].map((item, i) => ( +
+
+ +
+

{item.text}

+
+ ))} +
+
+ + +
+
+
+
+
+ +
+

Schedule Your Call

+

Select a date and time that works best for your schedule.

+ +
+
+ +
+ Calendly Widget Integration +

Your booking widget will appear here, allowing clients to book directly on your site.

+
+
+
+ +
+ +
+ ); +}