From b0e0f0a6c94ccb844dc8eca9540d393720384ace Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 9 Jun 2026 19:23:08 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/app/page.tsx b/src/app/page.tsx index aed1355..85853f7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -15,6 +15,16 @@ import TestimonialCardSixteen from '@/components/sections/testimonial/Testimonia import { BookOpen, CheckCircle, Grid, Lightbulb, LineChart, Repeat, Timer, Trophy, User } from "lucide-react"; export default function LandingPage() { + const handleContactSubmission = (email: string) => { + if (!email || !email.includes('@')) { + alert('Please enter a valid email address.'); + return; + } + // Simulate submission to a backend + console.log('Contact form submitted with email:', email); + alert(`Thank you for your message! We'll get back to you at ${email}.`); + }; + return ( -- 2.49.1