Merge version_3 into main #2

Merged
bender merged 1 commits from version_3 into main 2026-06-09 11:16:34 +00:00

View File

@@ -14,6 +14,12 @@ import ProductCardFour from '@/components/sections/product/ProductCardFour';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
export default function LandingPage() {
const handleContactSubmit = (email: string) => {
console.log("Contact form submitted with email:", email);
alert(`Thank you for your message, ${email}! We will get back to you soon.`);
// In a real application, you would send this email to a backend service
};
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
@@ -261,6 +267,7 @@ export default function LandingPage() {
inputPlaceholder="Your Email Address"
buttonText="Send Message"
termsText="By submitting, you agree to our Privacy Policy and Terms of Service."
onSubmit={handleContactSubmit}
/>
</div>