'use client'; import { motion } from "framer-motion"; import { useInView } from "framer-motion"; import { useRef } from "react"; import { CreditCard, DollarSign } 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" ]; 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} ))}
); }