2025-11-06 12:02:10 +00:00
|
|
|
'use client';
|
|
|
|
|
|
|
|
|
|
import { motion } from "framer-motion";
|
|
|
|
|
import { useInView } from "framer-motion";
|
|
|
|
|
import { useRef, useEffect, useState } from "react";
|
|
|
|
|
import { Baby, Brain, HeartHandshake, Sparkles, Users2, Shield } from "lucide-react";
|
|
|
|
|
|
|
|
|
|
export function Services() {
|
|
|
|
|
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 services = [
|
|
|
|
|
{
|
|
|
|
|
icon: Brain,
|
|
|
|
|
title: "Trauma-Focused Therapy",
|
|
|
|
|
description: "Evidence-based TF-CBT to help children process and heal from traumatic experiences in a safe, supportive environment.",
|
2025-11-06 22:44:29 +00:00
|
|
|
backgroundImage: "https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80",
|
2025-11-06 12:02:10 +00:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
icon: Sparkles,
|
|
|
|
|
title: "Play Therapy",
|
|
|
|
|
description: "Child-centered play therapy allowing children to express themselves naturally and build emotional regulation skills.",
|
2025-11-06 22:44:29 +00:00
|
|
|
backgroundImage: "https://images.unsplash.com/photo-1503454537195-1dcabb73ffb9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80",
|
2025-11-06 12:02:10 +00:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
icon: Baby,
|
|
|
|
|
title: "Infant Mental Health",
|
|
|
|
|
description: "Specialized support for infants and toddlers, focusing on early attachment, developmental milestones, and caregiver relationships.",
|
2025-11-06 22:44:29 +00:00
|
|
|
backgroundImage: "https://images.unsplash.com/photo-1515488042361-ee00e0ddd4e4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80",
|
2025-11-06 12:02:10 +00:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
icon: Users2,
|
|
|
|
|
title: "Dyadic Therapy",
|
|
|
|
|
description: "Strengthening parent-child relationships through interactive sessions that enhance communication and connection.",
|
2025-11-06 22:44:29 +00:00
|
|
|
backgroundImage: "https://images.unsplash.com/photo-1529156069898-49953e39b3ac?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80",
|
2025-11-06 12:02:10 +00:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
icon: HeartHandshake,
|
|
|
|
|
title: "Social-Emotional Support",
|
|
|
|
|
description: "Building emotional literacy and self-regulation skills to help children navigate relationships and challenges.",
|
2025-11-06 22:44:29 +00:00
|
|
|
backgroundImage: "https://images.unsplash.com/photo-1497486751825-1233686d5d80?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80",
|
2025-11-06 12:02:10 +00:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
icon: Shield,
|
|
|
|
|
title: "Relationship-Based Care",
|
|
|
|
|
description: "Fostering healing through nurturing therapeutic relationships and caregiver collaboration.",
|
2025-11-06 22:44:29 +00:00
|
|
|
backgroundImage: "https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80",
|
2025-11-06 12:02:10 +00:00
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<section
|
|
|
|
|
id="services"
|
|
|
|
|
ref={ref}
|
|
|
|
|
className="relative py-20 px-4 overflow-hidden"
|
|
|
|
|
>
|
2025-11-06 22:44:29 +00:00
|
|
|
{/* Background Image */}
|
2025-11-06 12:02:10 +00:00
|
|
|
<div
|
2025-11-06 22:44:29 +00:00
|
|
|
className="absolute inset-0 z-0"
|
2025-11-06 12:02:10 +00:00
|
|
|
style={{
|
2025-11-06 22:44:29 +00:00
|
|
|
backgroundImage: `url('/large.jpeg')`,
|
|
|
|
|
backgroundSize: 'cover',
|
|
|
|
|
backgroundPosition: 'center',
|
|
|
|
|
backgroundRepeat: 'no-repeat',
|
2025-11-06 12:02:10 +00:00
|
|
|
}}
|
|
|
|
|
/>
|
2025-11-06 22:44:29 +00:00
|
|
|
|
|
|
|
|
{/* Minimal overlay - allowing background image to show at near original opaqueness */}
|
|
|
|
|
<div
|
|
|
|
|
className="absolute inset-0 z-[1]"
|
|
|
|
|
style={{
|
|
|
|
|
backgroundColor: isDark ? 'rgba(0, 0, 0, 0.15)' : 'rgba(255, 255, 255, 0.10)'
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
{/* Very subtle gradient overlay */}
|
2025-11-06 12:02:10 +00:00
|
|
|
{!isDark && (
|
2025-11-06 22:44:29 +00:00
|
|
|
<div className="absolute inset-0 z-[2] bg-gradient-to-br from-rose-50/10 via-pink-50/8 to-orange-50/10" />
|
2025-11-06 12:02:10 +00:00
|
|
|
)}
|
|
|
|
|
{isDark && (
|
2025-11-06 22:44:29 +00:00
|
|
|
<div className="absolute inset-0 z-[2] bg-gradient-to-br from-gray-900/10 via-gray-800/8 to-gray-900/10" />
|
2025-11-06 12:02:10 +00:00
|
|
|
)}
|
|
|
|
|
|
2025-11-06 22:44:29 +00:00
|
|
|
{/* Subtle animated blobs */}
|
|
|
|
|
<div className="absolute inset-0 overflow-hidden z-[3]">
|
2025-11-06 12:02:10 +00:00
|
|
|
<motion.div
|
2025-11-06 22:44:29 +00:00
|
|
|
className="absolute top-20 right-20 w-72 h-72 bg-pink-100 dark:bg-pink-900/20 rounded-full mix-blend-multiply dark:mix-blend-lighten filter blur-xl opacity-30 dark:opacity-50"
|
2025-11-06 12:02:10 +00:00
|
|
|
animate={{
|
|
|
|
|
x: [0, -90, 0],
|
|
|
|
|
y: [0, 50, 0],
|
|
|
|
|
scale: [1, 1.2, 1],
|
|
|
|
|
}}
|
|
|
|
|
transition={{
|
|
|
|
|
duration: 20,
|
|
|
|
|
repeat: Infinity,
|
|
|
|
|
ease: 'easeInOut',
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
<motion.div
|
2025-11-06 22:44:29 +00:00
|
|
|
className="absolute bottom-10 left-20 w-96 h-96 bg-orange-100 dark:bg-orange-900/20 rounded-full mix-blend-multiply dark:mix-blend-lighten filter blur-xl opacity-30 dark:opacity-50"
|
2025-11-06 12:02:10 +00:00
|
|
|
animate={{
|
|
|
|
|
x: [0, 70, 0],
|
|
|
|
|
y: [0, -60, 0],
|
|
|
|
|
scale: [1, 1.15, 1],
|
|
|
|
|
}}
|
|
|
|
|
transition={{
|
|
|
|
|
duration: 24,
|
|
|
|
|
repeat: Infinity,
|
|
|
|
|
ease: 'easeInOut',
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="container max-w-6xl mx-auto relative z-10">
|
|
|
|
|
<motion.div
|
|
|
|
|
initial={{ opacity: 0, y: 30 }}
|
|
|
|
|
animate={isInView ? { opacity: 1, y: 0 } : {}}
|
|
|
|
|
transition={{ duration: 0.8 }}
|
|
|
|
|
className="text-center mb-16"
|
|
|
|
|
>
|
|
|
|
|
<motion.h2
|
|
|
|
|
className="text-4xl md:text-5xl font-bold mb-6 bg-gradient-to-r from-rose-600 via-pink-600 to-orange-600 bg-clip-text text-transparent"
|
|
|
|
|
initial={{ opacity: 0, y: 20 }}
|
|
|
|
|
animate={isInView ? { opacity: 1, y: 0 } : {}}
|
|
|
|
|
transition={{ duration: 0.8, delay: 0.2 }}
|
|
|
|
|
>
|
|
|
|
|
Specialized Services
|
|
|
|
|
</motion.h2>
|
|
|
|
|
<motion.p
|
|
|
|
|
className="text-xl text-muted-foreground max-w-3xl mx-auto"
|
|
|
|
|
initial={{ opacity: 0, y: 20 }}
|
|
|
|
|
animate={isInView ? { opacity: 1, y: 0 } : {}}
|
|
|
|
|
transition={{ duration: 0.8, delay: 0.4 }}
|
|
|
|
|
>
|
|
|
|
|
Comprehensive, evidence-based therapeutic support for children and families
|
|
|
|
|
</motion.p>
|
|
|
|
|
</motion.div>
|
|
|
|
|
|
|
|
|
|
<div className="grid md:grid-cols-2 lg:grid-cols-3 gap-6">
|
|
|
|
|
{services.map((service, index) => {
|
|
|
|
|
const Icon = service.icon;
|
|
|
|
|
return (
|
|
|
|
|
<motion.div
|
|
|
|
|
key={service.title}
|
|
|
|
|
initial={{ opacity: 0, y: 20 }}
|
|
|
|
|
animate={isInView ? { opacity: 1, y: 0 } : {}}
|
|
|
|
|
transition={{ duration: 0.5, delay: index * 0.1 }}
|
|
|
|
|
className="group bg-card/50 backdrop-blur-sm rounded-2xl p-6 border border-border/50 hover:border-rose-500/50 hover:shadow-lg hover:shadow-rose-500/10 hover:scale-105 transition-all duration-300 cursor-pointer"
|
|
|
|
|
>
|
2025-11-06 22:44:29 +00:00
|
|
|
{/* Content */}
|
|
|
|
|
<div className="relative z-10">
|
|
|
|
|
<motion.div
|
|
|
|
|
className="w-16 h-16 rounded-xl overflow-hidden mb-4 shadow-lg"
|
|
|
|
|
whileHover={{ scale: 1.1, rotate: 5 }}
|
|
|
|
|
transition={{ duration: 0.2 }}
|
|
|
|
|
>
|
|
|
|
|
<img
|
|
|
|
|
src={service.backgroundImage}
|
|
|
|
|
alt={service.title}
|
|
|
|
|
className="w-full h-full object-cover"
|
|
|
|
|
/>
|
|
|
|
|
</motion.div>
|
|
|
|
|
<motion.h3
|
|
|
|
|
className="text-xl font-semibold mb-3 text-foreground"
|
|
|
|
|
initial={{ opacity: 0 }}
|
|
|
|
|
animate={isInView ? { opacity: 1 } : {}}
|
|
|
|
|
transition={{ duration: 0.5, delay: 0.3 + index * 0.1 }}
|
|
|
|
|
>
|
|
|
|
|
{service.title}
|
|
|
|
|
</motion.h3>
|
|
|
|
|
<motion.p
|
|
|
|
|
className="text-muted-foreground leading-relaxed"
|
|
|
|
|
initial={{ opacity: 0 }}
|
|
|
|
|
animate={isInView ? { opacity: 1 } : {}}
|
|
|
|
|
transition={{ duration: 0.5, delay: 0.4 + index * 0.1 }}
|
|
|
|
|
>
|
|
|
|
|
{service.description}
|
|
|
|
|
</motion.p>
|
|
|
|
|
</div>
|
2025-11-06 12:02:10 +00:00
|
|
|
</motion.div>
|
|
|
|
|
);
|
|
|
|
|
})}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<motion.div
|
|
|
|
|
initial={{ opacity: 0, y: 30 }}
|
|
|
|
|
animate={isInView ? { opacity: 1, y: 0 } : {}}
|
|
|
|
|
transition={{ duration: 0.8, delay: 0.6 }}
|
|
|
|
|
className="mt-16 bg-gradient-to-br from-rose-100/30 via-pink-100/30 to-orange-100/30 dark:from-rose-900/20 dark:via-pink-900/20 dark:to-orange-900/20 rounded-3xl p-8 border border-border/50 backdrop-blur-sm"
|
|
|
|
|
>
|
|
|
|
|
<motion.h3
|
|
|
|
|
className="text-2xl font-semibold mb-4 text-center bg-gradient-to-r from-rose-600 via-pink-600 to-orange-600 bg-clip-text text-transparent"
|
|
|
|
|
initial={{ opacity: 0 }}
|
|
|
|
|
animate={isInView ? { opacity: 1 } : {}}
|
|
|
|
|
transition={{ duration: 0.8, delay: 0.7 }}
|
|
|
|
|
>
|
|
|
|
|
Who I Work With
|
|
|
|
|
</motion.h3>
|
|
|
|
|
<div className="max-w-3xl mx-auto text-center">
|
|
|
|
|
<motion.p
|
|
|
|
|
className="text-muted-foreground leading-relaxed mb-4"
|
|
|
|
|
initial={{ opacity: 0 }}
|
|
|
|
|
animate={isInView ? { opacity: 1 } : {}}
|
|
|
|
|
transition={{ duration: 0.8, delay: 0.8 }}
|
|
|
|
|
>
|
|
|
|
|
I specialize in working with <strong className="text-foreground">children under the age of 10</strong> who are
|
|
|
|
|
dealing with trauma, stressors, or social-emotional challenges and need understanding
|
|
|
|
|
and support.
|
|
|
|
|
</motion.p>
|
|
|
|
|
<motion.p
|
|
|
|
|
className="text-muted-foreground leading-relaxed"
|
|
|
|
|
initial={{ opacity: 0 }}
|
|
|
|
|
animate={isInView ? { opacity: 1 } : {}}
|
|
|
|
|
transition={{ duration: 0.8, delay: 0.9 }}
|
|
|
|
|
>
|
|
|
|
|
The goal is to build a healthy foundation through nurturing relationships and
|
|
|
|
|
emotional literacy, helping children diminish distress and enhance self-regulation.
|
|
|
|
|
</motion.p>
|
|
|
|
|
</div>
|
|
|
|
|
</motion.div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|