3 Commits

Author SHA1 Message Date
52ec457d5f Merge version_4 into main
Merge version_4 into main
2026-03-27 11:36:12 +00:00
5b4a573192 Update src/app/page.tsx 2026-03-27 11:36:09 +00:00
b65301618d Merge version_3 into main
Merge version_3 into main
2026-03-27 11:34:04 +00:00

View File

@@ -13,6 +13,10 @@ import TestimonialCardThirteen from '@/components/sections/testimonial/Testimoni
import { CheckCircle, Shield, TrendingUp, Zap } from "lucide-react"; import { CheckCircle, Shield, TrendingUp, Zap } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
const handleBookMeeting = () => {
window.open("https://calendly.com/your-calendar-link", "_blank");
};
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="bounce-effect" defaultButtonVariant="bounce-effect"
@@ -37,7 +41,7 @@ export default function LandingPage() {
]} ]}
brandName="Rizg AI" brandName="Rizg AI"
button={{ button={{
text: "Book a Meeting", href: "https://calendly.com/your-calendar-link"}} text: "Book a Meeting", onClick: handleBookMeeting }}
/> />
</div> </div>
@@ -59,7 +63,7 @@ export default function LandingPage() {
]} ]}
buttons={[ buttons={[
{ {
text: "Book a Meeting", href: "https://calendly.com/your-calendar-link"}, text: "Book a Meeting", onClick: handleBookMeeting },
]} ]}
/> />
</div> </div>
@@ -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." description="Ready to scale? Book a meeting to deploy your first voice AI agent in under 24 hours."
buttons={[ buttons={[
{ {
text: "Book Now", href: "https://calendly.com/your-calendar-link"}, text: "Book Now", onClick: handleBookMeeting },
]} ]}
/> />
</div> </div>