import Layout from "@/components/Layout"; import { Button } from "@/components/ui/button"; import { Badge } from "@/components/ui/badge"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { Check } from "lucide-react"; import { useNavigate } from "react-router-dom"; const PRICING_TIERS = [ { name: "Starter", description: "Perfect for indie developers", price: "Free", features: [ "Access to documentation", "Community forums", "Monthly research updates", "Basic tools and templates", ], cta: "Get Started", highlighted: false, }, { name: "Professional", description: "For growing studios", price: "$49", period: "/month", features: [ "Everything in Starter", "Advanced optimization guides", "Priority support", "Exclusive research previews", "API access", "Custom consulting hours", ], cta: "Start Free Trial", highlighted: true, }, { name: "Enterprise", description: "For large-scale operations", price: "Custom", features: [ "Everything in Professional", "Dedicated support team", "Custom research projects", "On-site training", "API SLA guarantee", "Custom integrations", ], cta: "Contact Sales", highlighted: false, }, ]; export default function LabsPricing() { const navigate = useNavigate(); return (
{/* Animated backgrounds */}
{/* Header */}

Labs Pricing

Invest in your development journey with flexible pricing plans

{/* Pricing Cards */}
{PRICING_TIERS.map((tier) => ( {tier.name}

{tier.description}

{tier.price}
{tier.period && (

{tier.period}

)}
    {tier.features.map((feature) => (
  • {feature}
  • ))}
))}
{/* FAQ Section */}

Frequently Asked Questions

{[ { q: "Can I change plans anytime?", a: "Yes, upgrade or downgrade your plan at any time.", }, { q: "Do you offer discounts for annual billing?", a: "Yes, save 20% with annual plans on Professional and Enterprise tiers.", }, { q: "Is there a free trial?", a: "Professional tier includes a 14-day free trial. No credit card required.", }, ].map((item) => (

{item.q}

{item.a}

))}
); }