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