'use client'; import Image from 'next/image'; const features = [ { icon: '/assets/icons/hourglass-icon.svg', title: 'Hire Quickly', description: 'Connect with experienced local real estate agents who match your needs and preferences. Our simple process helps you get started quickly and move forward without delays or unnecessary complexity.', }, { icon: '/assets/icons/verified-badge-icon.svg', title: 'Verified Agents', description: 'All agents are carefully identity-verified and background-checked to ensure trust and safety. You can confidently work with professionals who meet quality and reliability standards.', }, { icon: '/assets/icons/star-orange-icon.svg', title: 'Top Rated', description: 'Work with highly rated agents known for strong expertise and positive client feedback. Their consistent performance helps you make informed and confident property decisions.', }, { icon: '/assets/icons/trusted-people-icon.svg', title: 'Trusted by Thousands', description: 'Thousands of buyers, sellers, and renters trust our platform to find reliable agents. Our professionals help people navigate property journeys with confidence and ease.', }, ]; const agents = [ { name: 'Anderson', role: 'Rental & Investment Consultant', rating: '4.9', location: 'New York', experience: '7+ years in the real estate industry.', image: '/assets/images/agent-anderson.jpg', position: 'top-left', }, { name: 'Deepak', role: 'Rental & Investment Consultant', rating: '4.9', location: 'New York', experience: '7+ years in the real estate industry.', image: '/assets/images/agent-deepak.jpg', position: 'top-right', }, { name: 'Daniel', role: 'Rental & Investment Consultant', rating: '4.9', location: 'New York', experience: '7+ years in the real estate industry.', image: '/assets/images/agent-daniel.jpg', position: 'bottom-center', }, ]; function AgentCard({ agent, className = '' }: { agent: typeof agents[0]; className?: string }) { return (
{/* Agent Image */}
{agent.name}
{/* Agent Info */}
{/* Name */}

{agent.name}

{/* Role */}

{agent.role}

{/* Verified & Rating */}
Verified Verified Agent
Rating {agent.rating} Rating
{/* Location */}
Location {agent.location}
{/* Experience */}

Experience: {agent.experience}

); } export function FeaturesSection() { return (
{/* Left Side - Title & Features */}
{/* Section Header */}

Find Trusted Real Estate Professionals On Demand

Quickly connect with the right agents exactly when you need them.

{/* Features Grid - 2x2 */}
{features.map((feature, index) => (
{feature.title}

{feature.title}

{feature.description}

))}
{/* Right Side - Agent Cards */}
{/* Anderson - Top Left */} {/* Deepak - Top Right, offset down */} {/* Daniel - Bottom Left, overlapping */}
{/* Mobile Agent Cards - Horizontal Scroll */}
{agents.map((agent, index) => ( ))}
); }