Update src/app/page.tsx
This commit is contained in:
@@ -2,9 +2,9 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
@@ -151,26 +151,30 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
<ContactSplitForm
|
||||
title="Trading Inquiry"
|
||||
description="Get in touch for institutional support or platform training."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Full Name" },
|
||||
{ name: "email", type: "email", placeholder: "Email Address" }
|
||||
]}
|
||||
multiSelect={{ name: "inquiry", label: "Inquiry Type", options: ["General Support", "Account Setup", "Platform Training", "Institutional Access"] }}
|
||||
textarea={{ name: "message", placeholder: "How can we help your trading?", rows: 4 }}
|
||||
useInvertedBackground={true}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Feedback"
|
||||
title="Connect with us"
|
||||
description="Questions or feedback? Let us know."
|
||||
buttons={[{ text: "Contact Support", href: "#" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
<FooterBaseReveal
|
||||
logoText="GV Forex AI"
|
||||
columns={[
|
||||
{ title: "App", items: [{ label: "AI Analyst", href: "#hero" }, { label: "Calculator", href: "#calculator" }] },
|
||||
{ title: "Resources", items: [{ label: "Checklist", href: "#checklist" }, { label: "Journal", href: "#journal" }] },
|
||||
{ title: "Platform", items: [{ label: "AI Analyst", href: "#hero" }, { label: "Calculator", href: "#calculator" }, { label: "Journal", href: "#journal" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
|
||||
]}
|
||||
copyrightText="© 2025 | GV Forex AI Institutional"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user