'use client'; import { useSession } from 'next-auth/react'; export default function AgentDashboard() { const { data: session } = useSession(); return (
{/* Welcome Section */}

Welcome back, {session?.user?.name?.split(' ')[0] || 'Agent'}!

Here's an overview of your real estate business today.

{/* Stats Grid */}

12

Active Listings

48

Total Clients

5

Upcoming Appointments

8

Unread Messages

{/* Quick Actions */}

Quick Actions

{/* Recent Activity */}

Recent Activity

New inquiry for 123 Main Street

2 hours ago

Appointment scheduled with John Doe

5 hours ago

Property price updated: 456 Oak Avenue

Yesterday

); }