'use client'; import { motion } from "framer-motion"; import { useInView } from "framer-motion"; import { useRef } from "react"; import { Star, Award } from "lucide-react"; import { useAppTheme } from "@/components/ThemeProvider"; export function Specialties() { const ref = useRef(null); const isInView = useInView(ref, { once: true, margin: "-100px" }); const { theme } = useAppTheme(); const isDark = theme === "dark"; const topSpecialties = [ "Child or Adolescent", "Coping Skills", "Self Esteem" ]; const expertise = [ "Adoption", "Family Conflict", "Geriatric and Seniors", "Life Transitions", "Parenting", "Peer Relationships", "Perinatal Mental Health", "Trauma and PTSD" ]; return (
{/* Background Image */}
{/* Minimal overlay - allowing background image to show at near original opaqueness */}
{/* Very subtle gradient overlay */} {!isDark && (
)} {isDark && (
)} {/* Subtle animated blobs */}
Specialties and Expertise Comprehensive therapeutic support tailored to your unique needs
{/* Top Specialties */}

Top Specialties

    {topSpecialties.map((specialty, index) => (
    {specialty} ))}
{/* Expertise */}

Expertise

    {expertise.map((item, index) => (
    {item} ))}
); }