From b2b8012c62aed6fd8ee5c87a84e10017b1b02f8c Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 15:06:44 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/app/page.tsx b/src/app/page.tsx index 3e0d58a..f8ed131 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,6 +13,20 @@ import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; export default function LandingPage() { + const handleContactSubmit = async (data: Record) => { + try { + console.log("Form data submitted:", data); + alert("Thank you! We have received your inquiry and will contact you shortly."); + } catch (error) { + console.error("Form submission error:", error); + alert("Something went wrong. Please try again later."); + } + }; + + const handleFooterPrivacy = () => { + alert("Privacy Policy: We protect your data as strictly as we protect our training standards."); + }; + return (