'use client'; import { motion } from 'framer-motion'; import { Button } from '@/components/ui/button'; import { ArrowRight, Calendar } from 'lucide-react'; import { useEffect, useState } from 'react'; export function HeroSection() { 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(); }, []); return (
{/* Background Image */}
{/* Subtle dark overlay for better text readability - keeping background image clearly visible */}
{/* Very subtle gradient overlay for warmth */} {!isDark && (
)} {isDark && (
)} {/* Subtle animated blobs for depth */}
Welcome to Attune Heart Therapy Nathalie Mac-Guffie, LMHC Compassionate, evidence-based therapy to help you heal, grow, and thrive. Creating a safe space for your journey toward emotional wellness.
); }