From b33fa6e28ed0c386a08dffdd898a2a275d5eb11d Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 4 Apr 2026 18:00:46 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c65d4b7..15bcfb4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,7 +11,7 @@ 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 } + ] + } ]} /> -- 2.49.1