'use client'; import { motion } from "framer-motion"; import { useInView } from "framer-motion"; <<<<<<< HEAD import { useRef } from "react"; import { Baby, Brain, HeartHandshake, Sparkles, Users2, Shield } from "lucide-react"; import { useAppTheme } from "@/components/ThemeProvider"; ======= import { useRef, useEffect, useState } from "react"; import { Users, Sparkles, Heart, Users2, Feather, Shield } from "lucide-react"; >>>>>>> 79a5bb9fb99183cdae6841a62b115a1f8b88161e export function Services() { const ref = useRef(null); const isInView = useInView(ref, { once: true, margin: "-100px" }); const { theme } = useAppTheme(); const isDark = theme === "dark"; const services = [ { icon: Users, title: "Child & Adolescent Support", description: "Developmentally attuned support for children, teens, adults, and elders—navigating adoption stories, peer relationships, and social-emotional growth alongside caregivers.", backgroundImage: "https://images.unsplash.com/photo-1503454537195-1dcabb73ffb9?auto=format&fit=crop&w=1000&q=80", }, { icon: Sparkles, title: "Coping Skills Coaching", description: "Solution-focused strategies that build resilience, emotional literacy, and daily coping tools for individuals across the lifespan.", backgroundImage: "https://images.unsplash.com/photo-1531512073830-ba890ca4eba2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80", }, { icon: Heart, title: "Self-Esteem Building", description: "Strength-based interventions that nurture confidence, self-worth, and advocacy skills for children, teens, adults, and elders.", backgroundImage: "https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?auto=format&fit=crop&w=1000&q=80", }, { icon: Users2, title: "Family & Caregiver Collaboration", description: "Dyadic therapy that reduces family conflict, strengthens parenting partnerships, and supports intergenerational understanding.", backgroundImage: "https://images.unsplash.com/photo-1529156069898-49953e39b3ac?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80", }, { icon: Feather, title: "Life Transitions & Perinatal Care", description: "Guidance through perinatal adjustments, caregiving shifts, and later-life transitions with compassion for each stage of adulthood.", backgroundImage: "https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?auto=format&fit=crop&w=1000&q=80", }, { icon: Shield, title: "Trauma & PTSD Recovery", description: "Trauma-focused CBT and play-based interventions that promote emotional safety, caregiver bonding, and long-term healing.", backgroundImage: "https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80", }, ]; return (
{/* Background Image */}
{/* Minimal overlay - allowing background image to show at near original opaqueness */}
{/* Very subtle gradient overlay */} {!isDark && (
)} {isDark && (
)} {/* Subtle animated blobs */}
Services Comprehensive, relationship-based therapy anchored in clinical expertise and compassionate collaboration.
{services.map((service, index) => { const Icon = service.icon; return (
{service.title} {service.title} {service.description}
); })}
Who I Work With
I collaborate closely with caregivers and individuals to foster emotional literacy, self-regulation, and secure relationships during times of transition or trauma. Therapy is tailored for children (age 6–10), teens, adults, and older adults, with services offered to individuals and a special focus on supporting Black and African American families in Miami and Hollywood, Florida.
); }