Update src/app/page.tsx
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user