6 Commits

Author SHA1 Message Date
68482004ac Update src/app/page.tsx 2026-03-06 05:35:57 +00:00
20171cb342 Merge version_5 into main
Merge version_5 into main
2026-03-06 05:22:13 +00:00
e7014cd9b1 Update src/app/page.tsx 2026-03-06 05:22:09 +00:00
dcdc958df3 Merge version_4 into main
Merge version_4 into main
2026-03-06 05:09:32 +00:00
1f5f265de2 Update src/app/page.tsx 2026-03-06 05:09:28 +00:00
b6655bfd62 Merge version_3 into main
Merge version_3 into main
2026-03-06 05:05:30 +00:00

View File

@@ -251,12 +251,22 @@ export default function LandingPage() {
<ContactCenter
tag="Ready to Win?"
title="Your Next Customer Is Searching Online Right Now."
description="Don't let them find your competitor. Launch your luxury website and start converting customers today. Limited availability for new projects. Contact us at Luxorasites.build@gmail.com to get started."
description="Don't let them find your competitor. Launch your luxury website and start converting customers today. Limited availability for new projects. Email us at Luxorasites.build@gmail.com to get started."
background={{ variant: "rotated-rays-animated" }}
useInvertedBackground={true}
inputPlaceholder="your@email.com"
buttonText="Start My Website"
termsText="We'll contact you within 24 hours to discuss your project. No spam, just premium web solutions."
onSubmit={(email: string) => {
// 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));
}}
/>
</div>