Compare commits
4 Commits
version_13
...
version_16
| Author | SHA1 | Date | |
|---|---|---|---|
| 8a0ab81526 | |||
| c782ac4928 | |||
| b33fa6e28e | |||
| e88a3d9a35 |
@@ -2,16 +2,16 @@
|
||||
|
||||
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 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() {
|
||||
return (
|
||||
@@ -74,9 +74,23 @@ export default function LandingPage() {
|
||||
title="Manifesting Abundance"
|
||||
description="Our community provides tools and guidance to align your energy and unlock your potential."
|
||||
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: "Inner Peace", description: "Find tranquility through daily affirmations.", bentoComponent: 'reveal-icon', icon: Heart }
|
||||
{
|
||||
title: "Advanced Manifestation", description: "Stack your daily intentions for greater clarity.", bentoComponent: '3d-stack-cards',
|
||||
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>
|
||||
@@ -130,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>
|
||||
|
||||
Reference in New Issue
Block a user