'use client'; const features = [ { icon: ( ), title: 'Hire Quickly', description: 'Connect with experienced local real estate agents who match your needs and preferences. Get answers quickly and move forward on your property decisions.', }, { icon: ( ), title: 'Verified Agents', description: 'All agents are carefully vetted and background checked to ensure that you work with professionals who meet quality and reliability standards.', }, { icon: ( ), title: 'Top Rated', description: 'Find highly rated agents based on positive client feedback. Their credentials and contributions have made them standout performers in the industry.', }, { icon: ( ), title: 'Trusted by Thousands', description: 'Thousands of buyers, sellers, and investors have relied on our platform. Our professionals help people navigate property tax-free gift exchanges.', }, ]; export function FeaturesSection() { return (
{/* Section Header */}

Find Trusted Real Estate Professionals On Demand

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

{/* Features Grid */}
{features.map((feature, index) => (
{feature.icon}

{feature.title}

{feature.description}

))}
); }