"use client" import { cn } from "@/lib/utils" import { Check } from "lucide-react" import type React from "react" import { useState } from "react" import { BillingToggle } from "./billing-toggle" export default function PricingSection() { const [billingCycle, setBillingCycle] = useState<"monthly" | "annual">("monthly") const discount = 20 const plans = { essential: { monthly: { price: "$14.99", suffix: "/month", }, annual: { price: "$149.90", suffix: "/year", }, }, creator: { monthly: { price: "$29.99", suffix: "/month", }, annual: { price: "$299.90", suffix: "/year", }, }, business: { monthly: { price: "$59.99", suffix: "/month", }, annual: { price: "$599.90", suffix: "/year", }, }, } return (

Pricing that scales with
your business

Essentials Plan

{plans.essential[billingCycle].price} {plans.essential[billingCycle].suffix}

Perfect for solopreneurs and content creators

FEATURES

    5 social media accounts Unlimited scheduled posts Visual content calendar Basic analytics dashboard Best time to post recommendations Mobile app access Email support 7-day free trial

Creator Plan

{plans.creator[billingCycle].price} {plans.creator[billingCycle].suffix}

Ideal for growing creators

FEATURES

    15 social media accounts Everything in Essentials plan Enhanced analytics with custom reports Content Studio Full AI content assistant (50 generations/month) Advanced content studio with brand presets Post recycling for evergreen content Content categories and tagging Team collaboration (3 users) Hashtag performance tracking Bulk scheduling and uploads Priority email support 7-day free trial

Business Plan

{plans.business[billingCycle].price} {plans.business[billingCycle].suffix}

Built for growing businesses, and agencies

FEATURES

    30 social media accounts Everything in Business plan Unlimited team members Unlimited AI content generations Premium content studio with multi-brand assets Client access portal with white labeling Advanced approval workflows Content library with asset management AI-powered content strategy suggestions Custom branded reports API access Real-time performance alerts Dedicated account manager Priority support with live chat 7-day free trial
) } function Feature({ children }: { children: React.ReactNode }) { return (
  • {children}
  • ) }