'use client'; import { motion } from "framer-motion"; import { useInView } from "framer-motion"; import { useRef } from "react"; import { Award, Heart, Users } from "lucide-react"; import { useAppTheme } from "@/components/ThemeProvider"; export function About() { const ref = useRef(null); const isInView = useInView(ref, { once: true, margin: "-100px" }); const { theme } = useAppTheme(); const isDark = theme === "dark"; 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

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