diff --git a/src/app/page.tsx b/src/app/page.tsx index 78a8b0f..94f0015 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -14,6 +14,12 @@ import ProductCardFour from '@/components/sections/product/ProductCardFour'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; export default function LandingPage() { + const handleContactSubmit = (email: string) => { + console.log("Contact form submitted with email:", email); + alert(`Thank you for your message, ${email}! We will get back to you soon.`); + // In a real application, you would send this email to a backend service + }; + return (