'use client'; import { motion } from "framer-motion"; import { useInView } from "framer-motion"; import { useRef, useEffect, useState } from "react"; import { Baby, Brain, HeartHandshake, Sparkles, Users2, Shield } from "lucide-react"; export function Services() { const ref = useRef(null); const isInView = useInView(ref, { once: true, margin: "-100px" }); const [isDark, setIsDark] = useState(false); useEffect(() => { const checkTheme = () => { setIsDark(document.documentElement.classList.contains('dark')); }; checkTheme(); const observer = new MutationObserver(checkTheme); observer.observe(document.documentElement, { attributes: true, attributeFilter: ['class'] }); return () => observer.disconnect(); }, []); const services = [ { icon: Brain, title: "Trauma-Focused Therapy", description: "Evidence-based TF-CBT to help children process and heal from traumatic experiences in a safe, supportive environment.", }, { icon: Sparkles, title: "Play Therapy", description: "Child-centered play therapy allowing children to express themselves naturally and build emotional regulation skills.", }, { icon: Baby, title: "Infant Mental Health", description: "Specialized support for infants and toddlers, focusing on early attachment, developmental milestones, and caregiver relationships.", }, { icon: Users2, title: "Dyadic Therapy", description: "Strengthening parent-child relationships through interactive sessions that enhance communication and connection.", }, { icon: HeartHandshake, title: "Social-Emotional Support", description: "Building emotional literacy and self-regulation skills to help children navigate relationships and challenges.", }, { icon: Shield, title: "Relationship-Based Care", description: "Fostering healing through nurturing therapeutic relationships and caregiver collaboration.", }, ]; return (
{!isDark && (
)} {isDark && (
)}
Specialized Services Comprehensive, evidence-based therapeutic support for children and families
{services.map((service, index) => { const Icon = service.icon; return ( {service.title} {service.description} ); })}
Who I Work With
I specialize in working with children under the age of 10 who are dealing with trauma, stressors, or social-emotional challenges and need understanding and support. The goal is to build a healthy foundation through nurturing relationships and emotional literacy, helping children diminish distress and enhance self-regulation.
); }