'use client'; import { motion } from "framer-motion"; import { useInView } from "framer-motion"; import { useRef, useEffect, useState } from "react"; import { CreditCard, DollarSign, Shield } from "lucide-react"; export function Finances() { 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 paymentMethods = [ "American Express", "Discover", "Mastercard", "Visa" ]; const insuranceProviders = [ "Aetna", "Aetna - Medicare", "Aetna - WebTPA", "All Savers", "Ambetter", "AvMed", "Cigna and Evernorth", "EAP:Cigna", "EAP:UnitedHealthcare/Optum", "Golden Rule", "Harvard Pilgrim/United", "Humana", "Humana - Medicare", "Humana Dual- Medicaid/Medicare", "Medicaid", "Optum", "Oscar Health", "Oxford", "Surest (formerly Bind)", "Tufts Health/Cigna", "UHC/Optum - Medicare", "United Medical Resources (UMR)", "UnitedHealthcare UHC | UBH" ]; return (
{/* Background Image */}
{/* Minimal overlay - allowing background image to show at near original opaqueness */}
{/* Very subtle gradient overlay */} {!isDark && (
)} {isDark && (
)} {/* Subtle animated blobs */}
Finances Transparent pricing and flexible payment options to support your therapeutic journey
{/* Fees */}

Fees

Individual Sessions

$175

{/* Payment Methods */}

Payment Methods

{paymentMethods.map((method, index) => ( {method} ))}
{/* Insurance */}

Insurance

{insuranceProviders.map((provider, index) => ( {provider} ))}
); }