Update src/app/page.tsx

This commit is contained in:
2026-04-04 18:00:46 +00:00
parent e88a3d9a35
commit b33fa6e28e

View File

@@ -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 }
]
}
]}
/>
</div>