From ce034ba99926cc6a1098fb74051afd6aca233909 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 26 May 2026 09:49:37 +0000 Subject: [PATCH] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index d7b3d65..32cf79b 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -44,10 +44,14 @@ export default function ContactPage() { imageSrc="http://img.b2bpic.net/free-photo/elegant-cigar-box-gold-ring_23-2151113174.jpg" imageAlt="Elegant cigar box with gold ring" mediaPosition="left" - inputPlaceholder="Your Email Address" - buttonText="Send Message" - termsText="By sending a message, you agree to our Terms and Conditions." - onSubmit={(email) => console.log(`Contact form submitted with email: ${email}`)} + inputs={[ + { name: "name", type: "text", placeholder: "Your Name", required: true }, + { name: "email", type: "email", placeholder: "Your Email Address", required: true } + ]} + textarea={{ name: "message", placeholder: "Your Message", rows: 5, required: true }} + buttonText="Submit Inquiry" + termsText="By submitting, you agree to our privacy policy and terms of service." + onSubmit={(data) => console.log(`Contact form submitted with data: ${JSON.stringify(data)}`)} /> @@ -64,4 +68,4 @@ export default function ContactPage() { ); -} +} \ No newline at end of file -- 2.49.1