"use client"; import React, { useState, useEffect } from 'react'; import PricingCard from '@/components/pricing-card'; import { useTheme } from '@/lib/theme-context'; import { Sun, Moon } from 'lucide-react'; const PricingPage = () => { const [isYearly, setIsYearly] = useState(false); const { theme } = useTheme(); useEffect(() => { document.body.classList.add('pricing-page'); }, []); const toggleBillingPeriod = () => { setIsYearly(!isYearly); }; const getPrice = (basePrice: number) => { return isYearly ? basePrice * 10 : basePrice; }; const getBillingPeriod = () => { return isYearly ? 'year' : 'month'; }; return (

Find a plan to power your apps.

Dishpix supports teams of all sizes, with pricing that scales.

{/* Pricing Toggle (Monthly/Yearly) */}
{/* Pricing Cards Grid */}
); }; export default PricingPage;