import { Link } from 'react-router-dom'; import { Home as HomeIcon, Building2, TreePine, Store, ArrowRight } from 'lucide-react'; import { Button } from '../components/common'; const Home = () => { const categories = [ { icon: HomeIcon, name: 'Apartments', count: 15, path: '/properties?propertyType=apartment', color: 'from-teak-500 to-walnut-600' }, { icon: Building2, name: 'Villas', count: 28, path: '/properties?propertyType=villa', color: 'from-walnut-500 to-walnut-700' }, { icon: TreePine, name: 'Land', count: 12, path: '/properties?propertyType=land', color: 'from-olive-500 to-teak-600' }, { icon: Store, name: 'Commercial', count: 8, path: '/properties?propertyType=commercial', color: 'from-teal-500 to-teak-600' }, ]; const stats = [ { label: 'Properties Listed', value: '500+' }, { label: 'Happy Families', value: '1,200+' }, { label: 'Years Experience', value: '15+' }, { label: 'Locations Served', value: '25+' }, ]; return (
{/* Hero Section */}
Luxury Indian Villa

Premium Properties Across India

Find Your Dream
Home in India

Discover heritage villas, waterfront estates, and modern retreats across the serene landscapes of India.

{/* Categories Section */}

Explore by Category

From heritage villas to modern commercial spaces, find the perfect property type that matches your lifestyle.

{categories.map((category, index) => { const Icon = category.icon; return (

{category.name}

{category.count} Properties

); })}
{/* About Section */}
Luxury Property Interior
{stats.map((stat) => (

{stat.value}

{stat.label}

))}

About EstateVista

We Connect You to India's
Finest Properties

EstateVista is India's premier India-wide real estate platform, specializing in luxury heritage homes, waterfront villas, and premium properties across the state.

With over 15 years of expertise and deep roots in the India-wide property market references, we understand the unique charm of traditional architectural styles, the elegance of colonial structures, and the modern conveniences that discerning buyers seek.

Our curated listings span from serene lakeside escapes and mist-covered mountain hill stations to vibrant historic city centers, financial hubs, and pristine coastal regions across major national destinations.

{/* CTA Section */}

Ready to Find Your Dream Property?

Browse our exclusive collection of properties and connect with our expert realtors today.

); }; export default Home;