import Link from 'next/link'; import Header from '@/components/Header'; import Footer from '@/components/Footer'; export const metadata = { title: 'Billing | AV Beat Marketplace', }; export default function BillingPage() { return (
Marketplace / Account / Billing

Billing & Subscription

{/* Coming soon banner */}
💳

Payments Coming Soon

We're finalizing our payment integration. Pro and Featured subscriptions will be available shortly. Your free profile is already live and ready.

{/* Plan comparison */}

Available Plans

{[ { name: 'Free', price: '$0', period: 'forever', current: true, features: [ 'Basic profile', 'Appear in search', '3 gig responses/month', 'Apply to unlimited jobs', ], }, { name: 'Pro', price: '$9.99', period: '/month', current: false, highlight: true, features: [ 'Priority placement', 'Unlimited gig responses', 'Post jobs & gigs', 'Profile analytics', 'Pro Member badge', ], }, { name: 'Studio / Vendor', price: '$29.99', period: '/month', current: false, features: [ 'Everything in Pro', 'Company profile', 'Up to 5 staff profiles', 'Featured placement', 'Priority lead routing', ], }, ]?.map((plan) => (
{plan?.highlight && (
MOST POPULAR
)} {plan?.current && (
CURRENT PLAN
)}
{plan?.name}
{plan?.price} {plan?.period}
    {plan?.features?.map((f) => (
  • {f}
  • ))}
))}
{/* Job post pricing */}

One-Time Listings (Coming Soon)

Standard Job Post $49
Featured Job Post $99
Job Pack (5 posts) $199
Job Pack (10 posts) $349
← Back to Account
); }