diff --git a/src/app/page.tsx b/src/app/page.tsx index 225f157..cb7d269 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,6 +12,10 @@ import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; export default function LandingPage() { + const handleContactSubmit = (email: string) => { + console.log('Email submitted:', email); + }; + return ( @@ -217,6 +222,7 @@ export default function LandingPage() { inputPlaceholder="your@email.com" buttonText="Send Message" termsText="We'll get back to you within 24 hours. Your privacy matters to us." + onSubmit={handleContactSubmit} ariaLabel="Contact form to reach KYRO team" />