diff --git a/src/app/page.tsx b/src/app/page.tsx index ee621d8..0c9d226 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -208,7 +208,7 @@ export default function LandingPage() { inputPlaceholder="Your Name or Email" buttonText="Send Inquiry" termsText="By sending an inquiry, you agree to our privacy policy." - onSubmit={() => {}} + onSubmit={(email) => console.log("Contact form submitted with email:", email)} /> @@ -255,4 +255,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file