'use client'; import { useSession, signOut } from 'next-auth/react'; import Link from 'next/link'; export default function Home() { const { data: session } = useSession(); return (
{/* Header */}
{/* Logo */} RE-QuestN {/* User Menu */}
Welcome, {session?.user?.name || session?.user?.email || 'User'}
{/* Main Content */}

Welcome to RE-QuestN

Your real estate journey starts here. Explore properties, connect with agents, and find your dream home.

{/* Quick Actions */}

Browse Properties

Explore thousands of listings in your area

Find Agents

Connect with top real estate professionals

Saved Favorites

View your saved properties and searches

); }