Update src/app/mood/page.tsx
This commit is contained in:
@@ -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() {
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "If You Miss Me",
|
||||
id: "/miss-you",
|
||||
},
|
||||
name: "If You Miss Me", id: "/miss-you"},
|
||||
{
|
||||
name: "If You’re Upset",
|
||||
id: "/upset",
|
||||
},
|
||||
name: "If You’re Upset", id: "/upset"},
|
||||
{
|
||||
name: "Our Games",
|
||||
id: "/games",
|
||||
},
|
||||
name: "Our Games", id: "/games"},
|
||||
{
|
||||
name: "Our Memories",
|
||||
id: "/memories",
|
||||
},
|
||||
name: "Our Memories", id: "/memories"},
|
||||
{
|
||||
name: "Surprise Boxes",
|
||||
id: "/surprises",
|
||||
},
|
||||
name: "Surprise Boxes", id: "/surprises"},
|
||||
{
|
||||
name: "Secret Letters",
|
||||
id: "/letters",
|
||||
},
|
||||
name: "Secret Letters", id: "/letters"},
|
||||
{
|
||||
name: "My Mood",
|
||||
id: "/mood",
|
||||
},
|
||||
name: "My Mood", id: "/mood"},
|
||||
]}
|
||||
brandName="Our Little Universe 💖"
|
||||
/>
|
||||
@@ -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() {
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Explore",
|
||||
items: [
|
||||
title: "Explore", items: [
|
||||
{
|
||||
label: "Memories",
|
||||
href: "/memories",
|
||||
},
|
||||
label: "Memories", href: "/memories"},
|
||||
{
|
||||
label: "Surprise Boxes",
|
||||
href: "/surprises",
|
||||
},
|
||||
label: "Surprise Boxes", href: "/surprises"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
title: "Connect", items: [
|
||||
{
|
||||
label: "Secret Letters",
|
||||
href: "/letters",
|
||||
},
|
||||
label: "Secret Letters", href: "/letters"},
|
||||
{
|
||||
label: "My Mood",
|
||||
href: "/mood",
|
||||
},
|
||||
label: "My Mood", href: "/mood"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user