'use client'; import { motion } from 'framer-motion'; import { Button } from '@/components/ui/button'; import { ArrowRight, Calendar } from 'lucide-react'; import { useAppTheme } from '@/components/ThemeProvider'; export function HeroSection() { const { theme } = useAppTheme(); const isDark = theme === "dark"; 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.
); }