'use client'; import { useState } from 'react'; import Link from 'next/link'; import { AgentCard } from '../ui/AgentCard'; import { Button } from '../ui/Button'; // Sample agents data for tabs const agentsData = [ { id: '1', name: 'Arjun Mehta', title: 'Professional/General Agent', location: 'San Francisco, CA', rating: 4.9, reviewCount: 87, experience: '6+ years in the real estate industry', expertise: ['Residential', 'Luxury', 'Commercial'], imageUrl: 'https://images.unsplash.com/photo-1560250097-0b93528c311a?w=400&h=400&fit=crop', isVerified: true, }, { id: '2', name: 'Arjun Mehta', title: 'Top-tier Real Agent', location: 'San Francisco, CA', rating: 4.8, reviewCount: 65, experience: '8+ years in the real estate industry', expertise: ['Investment', 'Commercial', 'Property Management'], imageUrl: 'https://images.unsplash.com/photo-1519085360753-af0119f7cbe7?w=400&h=400&fit=crop', isVerified: true, }, { id: '3', name: 'Arjun Mehta', title: 'Verified Real Agent', location: 'San Francisco, CA', rating: 4.7, reviewCount: 42, experience: '6+ years in the real estate industry', expertise: ['Residential', 'First-time Buyers', 'Rentals'], imageUrl: 'https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=400&h=400&fit=crop', isVerified: true, }, ]; const lendersData = [ { id: '4', name: 'Sarah Johnson', title: 'Mortgage Specialist', location: 'Los Angeles, CA', rating: 4.9, reviewCount: 112, experience: '10+ years in mortgage lending', expertise: ['FHA Loans', 'Conventional', 'VA Loans'], imageUrl: 'https://images.unsplash.com/photo-1580489944761-15a19d654956?w=400&h=400&fit=crop', isVerified: true, }, { id: '5', name: 'Michael Chen', title: 'Senior Loan Officer', location: 'Seattle, WA', rating: 4.8, reviewCount: 89, experience: '7+ years in lending', expertise: ['Jumbo Loans', 'Refinancing', 'Investment'], imageUrl: 'https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?w=400&h=400&fit=crop', isVerified: true, }, { id: '6', name: 'Emily Davis', title: 'Home Loan Advisor', location: 'Austin, TX', rating: 4.7, reviewCount: 76, experience: '5+ years in mortgage industry', expertise: ['First-time Buyers', 'FHA', 'USDA Loans'], imageUrl: 'https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=400&h=400&fit=crop', isVerified: true, }, ]; export function TopProfessionals() { const [activeTab, setActiveTab] = useState<'agents' | 'lenders'>('agents'); const displayData = activeTab === 'agents' ? agentsData : lendersData; return (
{/* Section Header */}

“Meet top real estate professionals”

{/* Tabs */}
{/* Cards Grid */}
{displayData.map((professional) => ( ))} {/* Browse Experts CTA Card */}

Discover 6,000+ Top Real Estate Agents in Our Network

{/* Pagination Dots */}
{[0, 1, 2, 3].map((dot) => (
); }