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 (