|
|
|
|
@@ -2,14 +2,14 @@
|
|
|
|
|
|
|
|
|
|
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';
|
|
|
|
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
|
|
|
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
|
|
|
|
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
|
|
|
|
import { Heart, Sparkles, MessageCircle, Zap, Shield, Target } from "lucide-react";
|
|
|
|
|
|
|
|
|
|
@@ -29,7 +29,7 @@ export default function LandingPage() {
|
|
|
|
|
>
|
|
|
|
|
<ReactLenis root>
|
|
|
|
|
<div id="nav" data-section="nav">
|
|
|
|
|
<NavbarStyleFullscreen
|
|
|
|
|
<NavbarStyleCentered
|
|
|
|
|
navItems={[
|
|
|
|
|
{ name: "Manifest", id: "hero" },
|
|
|
|
|
{ name: "Tesla's 369", id: "about" },
|
|
|
|
|
@@ -48,7 +48,8 @@ export default function LandingPage() {
|
|
|
|
|
{ name: "Elena R.", handle: "@elena", testimonial: "The 369 method changed my entire outlook on life.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-attractive-caucasian-female-white-shirt-jeans-posing-beautiful-field_181624-57653.jpg?_wi=1" },
|
|
|
|
|
{ name: "Marcus T.", handle: "@marcus", testimonial: "Simple, effective, and deeply grounding. Truly transformative.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/low-angle-female-enjoying-seaside_23-2148574813.jpg?_wi=1" }
|
|
|
|
|
]}
|
|
|
|
|
buttons={[{ text: "Join the Movement", href: "#about" }]}
|
|
|
|
|
buttons={[{ text: "Join the Movement", href: "#about" }]
|
|
|
|
|
}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
@@ -144,19 +145,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>
|
|
|
|
|
|