From 5b4a5731926594a5cb7103e11c537cfa356660b6 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Mar 2026 11:36:09 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7dca65c..32ccbed 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,6 +13,10 @@ import TestimonialCardThirteen from '@/components/sections/testimonial/Testimoni import { CheckCircle, Shield, TrendingUp, Zap } from "lucide-react"; export default function LandingPage() { + const handleBookMeeting = () => { + window.open("https://calendly.com/your-calendar-link", "_blank"); + }; + return ( @@ -59,7 +63,7 @@ export default function LandingPage() { ]} buttons={[ { - text: "Book a Meeting", href: "https://calendly.com/your-calendar-link"}, + text: "Book a Meeting", onClick: handleBookMeeting }, ]} /> @@ -165,7 +169,7 @@ export default function LandingPage() { description="Ready to scale? Book a meeting to deploy your first voice AI agent in under 24 hours." buttons={[ { - text: "Book Now", href: "https://calendly.com/your-calendar-link"}, + text: "Book Now", onClick: handleBookMeeting }, ]} /> -- 2.49.1