import { motion } from 'framer-motion'; import { Check, X } from 'lucide-react'; export default function Pricing() { const plans = [ { name: "Starter", price: "Free", description: "Perfect for individuals and hobbyists", features: ["Basic 3D scrolling", "100MB storage", "Community support", "Standard templates"], cta: "Start for Free", popular: false }, { name: "Pro", price: "$29", description: "For growing businesses and creators", features: ["Advanced 3D effects", "10GB storage", "Priority support", "Custom templates", "Analytics dashboard"], cta: "Get Pro", popular: true }, { name: "Enterprise", price: "Custom", description: "For large organizations and teams", features: ["Full AI capabilities", "Unlimited storage", "24/7 dedicated support", "Custom integration", "SLA agreement"], cta: "Contact Sales", popular: false } ]; return (
Simple, Transparent Pricing Choose the perfect plan for your needs. No hidden fees, no surprises.
{plans.map((plan, index) => ( {plan.popular && (
Most Popular
)}

{plan.name}

{plan.price} {plan.price !== "Free" && /month}

{plan.description}

{plan.features.map((feature, i) => (
{feature}
))}
))}
); }