import React from 'react' import { Link } from '@inertiajs/react' export default function UpgradeCta({ title, description, primaryHref, primaryLabel, secondaryHref = null, secondaryLabel = null }) { return (

Academy Billing

{title}

{description}

{primaryLabel} {secondaryHref && secondaryLabel ? {secondaryLabel} : null}
) }