Compare commits
6 Commits
version_12
...
version_16
| Author | SHA1 | Date | |
|---|---|---|---|
| 8a0ab81526 | |||
| c782ac4928 | |||
| b33fa6e28e | |||
| e88a3d9a35 | |||
| 0332094604 | |||
| 28c582d15c |
@@ -2,16 +2,16 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
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 FaqBase from '@/components/sections/faq/FaqBase';
|
||||||
import FeatureBento from '@/components/sections/feature/FeatureBento';
|
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 HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
|
||||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||||
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
||||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
||||||
import { Heart, Sparkles, MessageCircle, Mail } from "lucide-react";
|
import { Heart, Sparkles, MessageCircle, Zap, Shield, Target } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -59,7 +59,7 @@ export default function LandingPage() {
|
|||||||
bulletPoints={[
|
bulletPoints={[
|
||||||
{ title: "Energy Alignment", description: "Understand the vibrations of 3, 6, and 9.", icon: Sparkles },
|
{ title: "Energy Alignment", description: "Understand the vibrations of 3, 6, and 9.", icon: Sparkles },
|
||||||
{ title: "Daily Practice", description: "Consistent routines for lasting abundance.", icon: Heart },
|
{ title: "Daily Practice", description: "Consistent routines for lasting abundance.", icon: Heart },
|
||||||
{ title: "Community Support", description: "Grow alongside like-minded spirits.", icon: MessageCircle }
|
{ title: "Community Support", description: "Grow alongside like-minded spirits", icon: MessageCircle }
|
||||||
]}
|
]}
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
@@ -74,9 +74,23 @@ export default function LandingPage() {
|
|||||||
title="Manifesting Abundance"
|
title="Manifesting Abundance"
|
||||||
description="Our community provides tools and guidance to align your energy and unlock your potential."
|
description="Our community provides tools and guidance to align your energy and unlock your potential."
|
||||||
features={[
|
features={[
|
||||||
{ title: "Abundance Manifestation", description: "Scientifically-backed guided techniques.", bentoComponent: 'reveal-icon', icon: Sparkles },
|
{
|
||||||
{ title: "Love and Compassion", description: "Cultivate deep, loving relationships.", bentoComponent: 'reveal-icon', icon: Heart },
|
title: "Advanced Manifestation", description: "Stack your daily intentions for greater clarity.", bentoComponent: '3d-stack-cards',
|
||||||
{ title: "Inner Peace", description: "Find tranquility through daily affirmations.", bentoComponent: 'reveal-icon', icon: Heart }
|
items: [
|
||||||
|
{ icon: Sparkles, title: "Focus", subtitle: "Daily", detail: "3x mornings" },
|
||||||
|
{ icon: Zap, title: "Energy", subtitle: "6x midday", detail: "Intentional flow" },
|
||||||
|
{ icon: Target, title: "Result", subtitle: "9x nights", detail: "Deep alignment" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Dynamic Alignment", description: "Keep your goals orbiting your daily focus.", bentoComponent: 'orbiting-icons',
|
||||||
|
centerIcon: Heart,
|
||||||
|
items: [
|
||||||
|
{ icon: Sparkles, ring: 1, duration: 10 },
|
||||||
|
{ icon: MessageCircle, ring: 2, duration: 15 },
|
||||||
|
{ icon: Target, ring: 3, duration: 20 }
|
||||||
|
]
|
||||||
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -130,19 +144,38 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactText
|
<ContactSplitForm
|
||||||
text="Ready to Manifest your future? Join us today!"
|
title="Ready to Manifest your future?"
|
||||||
buttons={[{ text: "Join Now", href: "#" }]}
|
description="Join our community today and receive your first guide on the 369 method."
|
||||||
background={{ variant: "sparkles-gradient" }}
|
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}
|
useInvertedBackground={false}
|
||||||
|
mediaPosition="right"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoReveal
|
<FooterBaseReveal
|
||||||
logoText="Just Us 369"
|
logoText="Just Us 369"
|
||||||
leftLink={{ text: "Privacy", href: "#" }}
|
columns={[
|
||||||
rightLink={{ text: "Terms", href: "#" }}
|
{
|
||||||
|
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>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
Reference in New Issue
Block a user