'use client'; import { motion } from "framer-motion"; import { useInView } from "framer-motion"; import { useRef } from "react"; import { CreditCard, DollarSign, Shield } from "lucide-react"; import { useAppTheme } from "@/components/ThemeProvider"; export function Finances() { const ref = useRef(null); const isInView = useInView(ref, { once: true, margin: "-100px" }); const { theme } = useAppTheme(); const isDark = theme === "dark"; 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} ))}
); }