import Link from 'next/link'; import Header from '@/components/Header'; import Footer from '@/components/Footer'; export const metadata = { title: 'Production Crew & Vendor Marketplace | AV Beat', description: 'Find broadcast and production crew, vendors, jobs, and gig opportunities. The professional marketplace built for the broadcast industry.', }; const CATEGORIES = [ { icon: '🎥', label: 'Camera & Lighting', count: 'DPs, Operators, Gaffers' }, { icon: '🎙️', label: 'Audio', count: 'Mixers, Boom Ops, Sound Designers' }, { icon: '🎬', label: 'Directing & Production', count: 'Directors, Producers, ADs' }, { icon: '✂️', label: 'Post Production', count: 'Editors, Colorists, VFX' }, { icon: '📡', label: 'Broadcast & Live', count: 'TDs, Engineers, MCOs' }, { icon: '🏢', label: 'Vendors & Companies', count: 'Rental Houses, Post Facilities' }, ]; const STATS = [ { value: 'Phase 1', label: 'MVP Launch' }, { value: 'Free', label: 'To Join' }, { value: 'NAB', label: 'Official Media Partner' }, { value: '2025', label: 'Built for Today' }, ]; export default function MarketplacePage() { return (
{/* Hero */}
Now Live — Phase 1 MVP

The Pro AV Industry's
Production Marketplace

Find crew, hire vendors, post jobs, and land gigs — all in one place built by pro AV professionals, for pro AV professionals.

Find Crew & Vendors Create Your Profile
{/* Stats */}
{STATS?.map((s) => (
{s?.value}
{s?.label}
))}
{/* Categories */}

Browse by Category

{CATEGORIES?.map((cat) => (
{cat?.icon}
{cat?.label}
{cat?.count}
))}
{/* Three Columns: Find / Post / Join */}
🔍

Find Talent

Search our directory of verified pro AV integrators, live production engineers, and display tech vendors. Filter by location, specialty, rate, and union status.

Search Directory →
📋

Post Jobs & Gigs

Post full-time positions or short-term crew calls. Reach thousands of qualified pro AV professionals instantly.

Browse Jobs → Browse Gigs →

Get Discovered

Create your free profile, get verified by our team, and start receiving leads from clients and employers across the industry.

Create Profile →
{/* Pricing teaser */}

Simple, Transparent Pricing

Start free. Upgrade when you're ready to grow.

{[ { name: 'Free', price: '$0', period: 'forever', features: ['Basic profile', 'Appear in search', '3 gig responses/month'], cta: 'Get Started', href: '/marketplace/join', highlight: false, }, { name: 'Pro', price: '$9.99', period: '/month', features: [ 'Priority placement', 'Unlimited gig responses', 'Post jobs & gigs', 'Profile analytics', ], cta: 'Go Pro', href: '/marketplace/join', highlight: true, }, { name: 'Studio / Vendor', price: '$29.99', period: '/month', features: [ 'Company profile', 'Up to 5 staff profiles', 'Featured placement', 'Priority lead routing', ], cta: 'Get Started', href: '/marketplace/join', highlight: false, }, ]?.map((plan) => (
{plan?.highlight && (
MOST POPULAR
)}
{plan?.name}
{plan?.price} {plan?.period}
    {plan?.features?.map((f) => (
  • {f}
  • ))}
{plan?.cta}
))}
{/* Stripe coming soon notice */}
💳 Billing coming soon — Pro and Studio plans are available now. Payment processing will be enabled shortly. Create your free profile today and upgrade when billing launches.
); }