Update src/app/page.tsx

This commit is contained in:
2026-06-07 22:27:22 +00:00
parent ae0d916b8d
commit a5fe087bbf

View File

@@ -15,6 +15,10 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Award, Cog, Mail, Megaphone, Search, Sparkles, Star, Store, TrendingUp } from "lucide-react";
export default function LandingPage() {
const handleContactSubmit = (email: string) => {
console.log('Contact form submitted:', email);
};
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
@@ -187,7 +191,7 @@ export default function LandingPage() {
inputPlaceholder="Your Email Address"
buttonText="Send Message"
termsText="By sending a message you're confirming that you agree with our Terms and Conditions and Privacy Policy."
onSubmit={(email) => console.log('Contact form submitted:', email)}
onSubmit={handleContactSubmit}
ariaLabel="Contact section with support email form"
/>
</div>