From 1f5f265de204812fb13b198a98a45b789b9019f6 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 05:09:28 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6038aea..cffeff9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -251,12 +251,22 @@ export default function LandingPage() { { + // Send email to luxorasites.build@gmail.com + fetch('/api/contact', { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + body: JSON.stringify({ email }), + }).catch(err => console.error('Error submitting contact form:', err)); + }} /> -- 2.49.1