Merge version_16 into main #19

Merged
bender merged 1 commits from version_16 into main 2026-04-04 18:07:26 +00:00

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureBento from '@/components/sections/feature/FeatureBento';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
import SplitAbout from '@/components/sections/about/SplitAbout';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
@@ -144,19 +144,38 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactText
text="Ready to Manifest your future? Join us today!"
buttons={[{ text: "Join Now", href: "#" }]}
background={{ variant: "sparkles-gradient" }}
<ContactSplitForm
title="Ready to Manifest your future?"
description="Join our community today and receive your first guide on the 369 method."
inputs={[
{ name: "name", type: "text", placeholder: "Your Full Name", required: true },
{ name: "email", type: "email", placeholder: "Your Email Address", required: true }
]}
buttonText="Submit"
useInvertedBackground={false}
mediaPosition="right"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
<FooterBaseReveal
logoText="Just Us 369"
leftLink={{ text: "Privacy", href: "#" }}
rightLink={{ text: "Terms", href: "#" }}
columns={[
{
title: "Quick Links", items: [
{ label: "About", href: "#about" },
{ label: "Features", href: "#features" },
{ label: "Contact", href: "#contact" }
]
},
{
title: "Legal", items: [
{ label: "Privacy", href: "#" },
{ label: "Terms", href: "#" }
]
}
]}
copyrightText="© 2024 Just Us 369 Community. All rights reserved."
/>
</div>
</ReactLenis>