'use client'; import { motion } from "framer-motion"; import { useInView } from "framer-motion"; import { useRef, useEffect, useState } from "react"; import { Award, Heart, Users } from "lucide-react"; export function About() { 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 credentials = [ { icon: Award, title: "Licensed Mental Health Counselor (LMHC)", description: "Florida licensed with 30 years of experience", }, { icon: Heart, title: "Trauma-Focused Specialist", description: "Certified in TF-CBT for trauma recovery", }, { icon: Users, title: "Infant Mental Health & Play Therapy", description: "Registered Play Therapist (RPT-S) and IMH Endorsement", }, ]; return (
{!isDark && (
)} {isDark && (
)}
Meet Nathalie Mac-Guffie A dedicated mental health professional specializing in helping children under 10 and their families navigate trauma, emotional challenges, and developmental needs.
My Approach

I provide person-centered guidance, following your child's lead while drawing out their strengths and incorporating effective coping skills. My interventions are relationship-based, creating a warm, non-judgmental space for growth and healing.

Together, we'll set realistic, measurable, and achievable goals with clear objectives tailored to your family's unique needs.

{credentials.map((cred, index) => { const Icon = cred.icon; return (
{cred.title} {cred.description}
); })}
); }