Merge version_4 into main #5

Merged
bender merged 1 commits from version_4 into main 2026-05-26 09:49:40 +00:00

View File

@@ -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)}`)}
/>
</div>
@@ -64,4 +68,4 @@ export default function ContactPage() {
</ReactLenis>
</ThemeProvider>
);
}
}