import React from 'react'; import { ClayCard } from './ClayCard'; import { Button } from './Button'; import { GraduationCap, Users, Calendar, FileText, ClipboardCheck, ExternalLink, Sparkles, Star, ArrowRight, Download, Video, BookOpen, Mic, Trophy, Target, TrendingUp, CalendarDays, Clock, MapPin } from 'lucide-react'; interface MarketplaceProps { onQuizClick: () => void; calendlyCoachingLink?: string; calendlyTeamLink?: string; } export const Marketplace: React.FC = ({ onQuizClick, calendlyCoachingLink = 'https://calendly.com', calendlyTeamLink = 'https://calendly.com', }) => { const handleExternalLink = (url: string) => { window.open(url, '_blank', 'noopener,noreferrer'); }; return (
{/* Header - Level 1 (subtle) since it's a page header */}
Your Success Hub

Town Hall

Resources, coaching, and opportunities to accelerate your commercial real estate success.

{/* Main Action Cards */}
{/* Get Coaching Card */}

Get Coaching

Popular

Work one-on-one with an expert coach to optimize your outreach strategy, improve your scripts, and close more deals faster.

Strategy Sessions Script Review Deal Analysis
{/* Take the Quiz Card */}

Take the Performance Quiz

Free

Discover where you stand among your peers. Get personalized insights and actionable recommendations to level up your performance.

Benchmarking Personalized Tips 5 Minutes
{/* Join Our Team Card */}

Join Our Team

Interested in becoming part of our growing team? We are always looking for talented individuals who share our passion for real estate success.

Growth Opportunities Collaborative Culture
{/* Two Column Layout for Events and Resources */}
{/* Upcoming Events Section */}

Upcoming Events

Workshops & Live Events

Join our community events to learn and network.

{/* Empty State with Illustration */}

No Events Scheduled

Exciting workshops and networking events are coming soon!

Webinars Q&A Sessions Masterclasses
{/* Preview Event Card (Coming Soon) */}

Coming Soon

Market Analysis Workshop

Virtual Event
{/* Free Resources Section */}

Free Resources

Scripts, Guides & Templates

Download free resources to boost your productivity.

{/* Empty State with Illustration */}

Resources Coming Soon

We are preparing valuable templates and guides for you.

Cold Call Scripts Email Templates Deal Checklists
{/* Preview Resource Cards (Coming Soon) */}

LOI Template

PDF

Call Scripts

DOC

); };