Update src/app/contact/page.tsx
This commit is contained in:
@@ -5,6 +5,11 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
|
||||
export default function ContactPage() {
|
||||
const handleFormSubmit = (data: Record<string, string>) => {
|
||||
console.log('Form submitted:', data);
|
||||
// Handle form submission logic here
|
||||
};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
@@ -42,9 +47,7 @@ export default function ContactPage() {
|
||||
{ name: "companyName", type: "text", placeholder: "Company/Organization", required: false }
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "Tell us about your investment goals and how we can help...",
|
||||
rows: 5,
|
||||
name: "message", placeholder: "Tell us about your investment goals and how we can help...", rows: 5,
|
||||
required: true
|
||||
}}
|
||||
useInvertedBackground="noInvert"
|
||||
@@ -52,7 +55,7 @@ export default function ContactPage() {
|
||||
imageAlt="Professional meeting and consultation"
|
||||
mediaPosition="right"
|
||||
buttonText="Schedule Consultation"
|
||||
onSubmit={{}}
|
||||
onSubmit={handleFormSubmit}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user