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 (