"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.

); }