import React from 'react'; import { Card, CardContent } from '@/components/ui/card'; import { Button } from '@/components/ui/button'; import { motion } from 'framer-motion'; import { FaPlayCircle } from 'react-icons/fa'; const LandingPage = () => { return (
Rewire Your Brain for Healing and Growth

Build daily well-being practices whenever you need them. Break unhelpful habits, challenge negative thoughts, and empower yourself to heal.

{['Healing from Trauma', 'Breaking Negative Thoughts', 'Building Resilience', 'Stress Relief', 'Emotional Regulation', 'Positive Habit Formation'].map((title, index) => (

{title}

Access curated content designed to help you master {title.toLowerCase()}.

))}

Why Choose Us?

Personalized playlists, on-demand interventions, and practical tools for daily growth. Accessible anytime, anywhere.

What Our Users Are Saying

{[ { name: "Jessica M.", text: "This platform helped me finally break free from negative thought patterns." }, { name: "Mark R.", text: "The curated playlists are perfect for my busy schedule. It’s like having a therapist on demand." }, { name: "Sofia L.", text: "I love the focus on habit formation. It’s made a real difference in my daily life." } ].map((testimonial, index) => (

"{testimonial.text}"

- {testimonial.name}

))}

Recommended for You

{['Daily Grounding Practice', 'Breaking Negative Thought Cycles', 'Building Resilience Toolkit'].map((title, index) => (

{title}

))}
); }; export default LandingPage;