diff --git a/src/app/mood/page.tsx b/src/app/mood/page.tsx index 4028c95..8725766 100644 --- a/src/app/mood/page.tsx +++ b/src/app/mood/page.tsx @@ -7,7 +7,7 @@ import FooterBase from '@/components/sections/footer/FooterBase'; import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import TextAbout from '@/components/sections/about/TextAbout'; -import { Gauge, Heart, Share2, Smile, Sparkles } from "lucide-react"; +import { Gauge, Heart, Share2, Smile, Sparkles, Flower2, Cloudy } from "lucide-react"; export default function LandingPage() { return ( @@ -28,37 +28,21 @@ export default function LandingPage() { @@ -72,25 +56,13 @@ export default function LandingPage() { useInvertedBackground={false} metrics={[ { - id: "1", - value: "95%", - title: "Happy Days", - description: "Celebrating the majority of our days filled with joy.", - icon: Smile, + id: "1", value: "95%", title: "Happy Days", description: "Celebrating the majority of our days filled with joy.", icon: Smile, }, { - id: "2", - value: "๐Ÿ’–", - title: "Love Meter", - description: "Our affection growing stronger with every shared moment.", - icon: Heart, + id: "2", value: "๐Ÿ’–", title: "Love Meter", description: "Our affection growing stronger with every shared moment.", icon: Heart, }, { - id: "3", - value: "Countless", - title: "Moments of Bliss", - description: "Beyond measure, the pure happiness we find together.", - icon: Sparkles, + id: "3", value: "Countless", title: "Moments of Bliss", description: "Beyond measure, the pure happiness we find together.", icon: Sparkles, }, ]} title="Tracking Our Emotional Universe" @@ -106,24 +78,16 @@ export default function LandingPage() { features={[ { icon: Gauge, - title: "Daily Mood Tracker", - description: "Log your feelings to see patterns and understand your emotional shifts.", - }, + title: "Daily Mood Tracker", description: "Log your feelings to see patterns and understand your emotional shifts."}, { icon: Flower2, - title: "Joyful Memory Prompts", - description: "Receive prompts that encourage reflection on happy moments, boosting your mood.", - }, + title: "Joyful Memory Prompts", description: "Receive prompts that encourage reflection on happy moments, boosting your mood."}, { icon: Cloudy, - title: "Supportive Reminders", - description: "Gentle nudges and comforting messages during challenging times.", - }, + title: "Supportive Reminders", description: "Gentle nudges and comforting messages during challenging times."}, { icon: Share2, - title: "Share Your Vibe", - description: "Optionally share your current mood with your partner for deeper empathy.", - }, + title: "Share Your Vibe", description: "Optionally share your current mood with your partner for deeper empathy."}, ]} title="Explore Our Mood Features" description="Interactive ways to capture, reflect, and share your daily emotional landscape." @@ -141,29 +105,19 @@ export default function LandingPage() {