import { motion } from "framer-motion"; import { ArrowRight, BarChart3, Sparkles } from "lucide-react"; import { Link } from "react-router-dom"; const frameworks = [ { letter: "O", word: "Optimize", tagline: "Open the door through Optimization", icon: "🚪" }, { letter: "W", word: "Why", tagline: "Wear it on your sleeve — find your WHY", icon: "❤️‍🔥" }, { letter: "N", word: "Navigate", tagline: "Navigate the nonsense, Now", icon: "🧭" }, { letter: "I", word: "Introspect", tagline: "I SEE it through Introspection", icon: "👁️" }, { letter: "T", word: "Triumph", tagline: "Triumph with Team", icon: "🏆" }, ]; const seasons = [ { name: "Spring", slug: "spring", tagline: "Plant the seeds", emoji: "🌱", color: "season-spring" }, { name: "Summer", slug: "summer", tagline: "Fuel the fire", emoji: "☀️", color: "season-summer" }, { name: "Autumn", slug: "autumn", tagline: "Harvest wisdom", emoji: "🍂", color: "season-autumn" }, { name: "Winter", slug: "winter", tagline: "Reflect & restore", emoji: "❄️", color: "season-winter" }, ]; const HeroSection = () => (
{/* Background glow */}

Seasonal Mindful Goal Setting

O.W.N.
I.T.

A guided journal to set mindful goals each season — optimizing your life one intentional step at a time.

Begin Your Journey
); const FrameworkSection = () => (

The Framework

Five pillars to guide your mindful goal-setting journey

{frameworks.map((item, i) => (
{item.icon}
{item.letter}

{item.word}

{item.tagline}

))}
); const SeasonsSection = () => (

Choose Your Season

Each season is a new chapter. Pick where you are right now.

{seasons.map((season, i) => (
{season.emoji}

{season.name}

{season.tagline}

Start journaling
))}
); const Index = () => { return (
View Progress Dashboard

Own your journey. One season at a time.

); }; export default Index;