diff --git a/src/app/page.tsx b/src/app/page.tsx index 6ff405d..936d452 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -14,6 +14,13 @@ import FooterMedia from "@/components/sections/footer/FooterMedia"; import { Sparkles, Zap, Award, Star, MessageCircle, TrendingUp, Users, Globe } from "lucide-react"; export default function LandingPage() { + const handleContactSubmit = (email: string) => { + // Create WhatsApp link with the email as the message + const whatsappNumber = "923001234567"; + const message = encodeURIComponent(`I'm interested in learning more. My email is: ${email}`); + window.open(`https://wa.me/${whatsappNumber}?text=${message}`, "_blank"); + }; + return (