'use client'; import { useState } from 'react'; import Link from 'next/link'; import styles from './Pricing.module.css'; export default function Pricing() { const [isAnnual, setIsAnnual] = useState(false); const plans = [ { name: 'Basic Buddy', description: 'Perfect for individual creators.', price: { monthly: 10, annual: 100 }, features: [ '1 Social Profiles', 'Basic Analytics', 'Content Scheduling', 'Standard Support', ], cta: 'Get Started', popular: false, }, { name: 'Standard Buddy', description: 'For growing businesses and influencers.', price: { monthly: 50, annual: 500 }, features: [ '10 Social Profiles', 'Advanced Analytics', 'AI Content Generation', 'Priority Support', 'Team Collaboration (up to 3)', ], cta: 'Get Started', popular: true, }, { name: 'Premium Buddy', description: 'Ultimate solution for agencies.', price: { monthly: 150, annual: 1500 }, features: [ '25 Social Profiles', 'White Label Reports', 'Dedicated Account Manager', 'API Access', 'Unlimited Team Members', ], cta: 'Get Started', popular: false, }, ]; return (
Pricing

Clear Plans with
No Hidden Costs

Select a package that fits your goals. Every option comes with a risk-free 7-day trial so you can explore confidently.

Monthly Yearly Save 20%
{plans.map((plan, index) => (

{plan.name}

{plan.description}

{plan.features.map((feature, idx) => (
{feature}
))}
$ {isAnnual ? Math.floor(plan.price.annual) : plan.price.monthly}
per {isAnnual ? 'year' : 'month'}
Get Started
))}

Start confidently and stop anytime.

); }