'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 (
{/* Background Image */}
{/* Subtle overlay for readability - keeping background image clearly visible */}
{/* Very subtle gradient overlay */} {!isDark && (
)} {isDark && (
)} {/* Subtle animated blobs */}
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
Nathalie Mac-Guffie supporting clients

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}
); })}
Professional Qualifications

Nathalie Mac-Guffie brings more than three decades of licensed experience serving children, caregivers, and families across South Florida. Her practice is grounded in ongoing professional development and nationally recognized credentials.

View Psychology Today Verification

Verification

Verified by Psychology Today • Licensed by the State of Florida (LMHC #MH5585)

Education

Barry University — Master of Science in Mental Health Counseling (1994)

Additional Credentials

Licensed Mental Health Counselor • Registered Play Therapist-Supervisor (Association of Play Therapy)

Specialized Expertise

Trauma-Focused CBT • Infant Mental Health • Dyadic and Relationship-Based Therapy

); }