Update src/app/page.tsx
This commit is contained in:
@@ -19,13 +19,19 @@ export default function Home() {
|
||||
]}
|
||||
brandName="Luxuria"
|
||||
/>
|
||||
<ContactSplitForm
|
||||
title="Get in Touch"
|
||||
description="Ready to plan your next luxury escape? Contact us today."
|
||||
inputs={[{ name: "email", type: "email", placeholder: "Email Address", required: true }, { name: "name", type: "text", placeholder: "Full Name", required: true }]}
|
||||
useInvertedBackground={false}
|
||||
onSubmit={(data) => console.log(data)}
|
||||
/>
|
||||
<div id="contact">
|
||||
<ContactSplitForm
|
||||
title="Get in Touch"
|
||||
description="Ready to plan your next luxury escape? Contact us today."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Email Address", required: true },
|
||||
{ name: "message", type: "textarea", placeholder: "Tell us about your travel needs", required: false }
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
onSubmit={(data) => console.log(data)}
|
||||
/>
|
||||
</div>
|
||||
<FooterBaseCard
|
||||
logoText="Luxuria"
|
||||
columns={[]}
|
||||
|
||||
Reference in New Issue
Block a user