import React from 'react' import SeoHead from '../../components/seo/SeoHead' function PlanCard({ plan, paymentsEnabled }) { return (

{plan.name}

{plan.badge}
{plan.price} {plan.interval}
{plan.features.map((feature) => (
{feature}
))}
) } export default function AcademyPricing({ seo, plans, paymentsEnabled }) { return (

Plans

Choose your AI Academy plan.

Start free, unlock Creator and Pro previews, and keep the billing flow disabled until Stripe and Cashier are introduced in the next phase.

{plans.map((plan) => ( ))}
) }