Update src/app/page.tsx

This commit is contained in:
2026-03-07 05:33:42 +00:00
parent a9f23552c4
commit d2e1671663

View File

@@ -12,6 +12,10 @@ import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
export default function LandingPage() {
const handleContactSubmit = (email: string) => {
console.log('Email submitted:', email);
};
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
@@ -199,6 +203,7 @@ export default function LandingPage() {
inputPlaceholder="Enter your email"
buttonText="Get Started"
termsText="By clicking Get Started, you're taking the first step toward your digital transformation."
onSubmit={handleContactSubmit}
ariaLabel="Call to action - Get started with KYRO"
/>
</div>
@@ -217,6 +222,7 @@ export default function LandingPage() {
inputPlaceholder="your@email.com"
buttonText="Send Message"
termsText="We'll get back to you within 24 hours. Your privacy matters to us."
onSubmit={handleContactSubmit}
ariaLabel="Contact form to reach KYRO team"
/>
</div>