"use client"; import React, { useState, useEffect } from "react"; import Image from "next/image"; import { MaterialIcon } from "@/components/ui/MaterialIcon"; const ROTATOR_SLIDES = [ "Enjoy your Neighbourhood Living.", "Just a Click – For all your needs.", "Convenient & safe shopping locally." ]; const OFFERINGS = [ { title: "Elegant Living", tag: "Join the #1 Neighbourhood App", descr: "Enjoy the comfort of elegant living. Nearle is India's first hyper-local managed platform bringing all amenities and requirements directly to your fingertips.", icon: "local_florist", color: "from-purple-500/10 to-indigo-500/10 text-primary border-purple-100", image: "/nearle people.png", isWide: false }, { title: "Awareness at a Touch", tag: "Hot Deals", descr: "Pick hot deals within your neighbourhood. Stay updated on localized sales, discounts, and flash promotions happening today.", icon: "local_activity", color: "from-amber-500/10 to-orange-500/10 text-amber-700 border-amber-100", image: "/images/app-mockup.png", isWide: false }, { title: "Best of Both Worlds", tag: "Convenience & Speed", descr: "Enjoy the ease of the World Wide Web, fulfilled entirely by trusted local businesses. Avoid traffic lights, parking hassles, and pollution.", icon: "travel_explore", color: "from-green-500/10 to-emerald-500/10 text-secondary border-green-100", image: "/images/slider-courier-mask.png", isWide: false }, { title: "Lifestyle Shopping", tag: "Exclusive Privileges", descr: "Enjoy safe, convenient shopping with custom pricing, resident promotions, and bulk order discounts negotiated for your community.", icon: "shopping_bag", color: "from-rose-500/10 to-pink-500/10 text-rose-700 border-rose-100", image: "/images/cat-pet-essentials.png", isWide: false }, { title: "Just a Click away", tag: "Instant Delivery", descr: "Order everything you need in your neighborhood with a single tap. A fast, organized last-mile delivery network ensures prompt fulfillment.", icon: "touch_app", color: "from-sky-500/10 to-blue-500/10 text-sky-700 border-sky-100", image: "/about.png", isWide: true }, { title: "Amazingly Fresh", tag: "Daily Essentials", descr: "Get your fresh fruits, farm-fresh vegetables, dairy, and grocery items delivered instantly from verified local green grocers.", icon: "eco", color: "from-emerald-500/10 to-teal-500/10 text-emerald-700 border-emerald-100", image: "/images/cat-daily-essentials.png", isWide: false }, { title: "Restaurants & Takeaways", tag: "Hot Food Nearby", descr: "Choose from the best local restaurants and neighborhood eateries close to your home. Hot food delivered with relevance and speed.", icon: "restaurant", color: "from-orange-500/10 to-red-500/10 text-orange-700 border-orange-100", image: "/images/cat-hot-food.png", isWide: false }, { title: "Never Before Experience", tag: "Custom Services", descr: "Access custom-tailored local neighborhood services designed to integrate convenience directly into residential society living.", icon: "stars", color: "from-violet-500/10 to-purple-500/10 text-violet-700 border-violet-100", image: "/images/cat-health-wellness.png", isWide: false }, { title: "Home Services @ Ease", tag: "Unified Local Partner", descr: "Book certified local service providers at your convenience. From handymen to laundry, pet care to pharmacy delivery, all in one place.", icon: "construction", color: "from-cyan-500/10 to-blue-500/10 text-cyan-700 border-cyan-100", image: "/images/cat-home-services.png", isWide: false } ]; const STATS = [ { count: "100+", label: "Verified Restaurants", icon: "restaurant" }, { count: "100+", label: "Green Grocers", icon: "local_mall" }, { count: "100+", label: "Home Etailers", icon: "shopping_cart" }, { count: "100+", label: "Service Providers", icon: "handyman" } ]; export default function PeoplePage() { const [slideIndex, setSlideIndex] = useState(0); useEffect(() => { const timer = setInterval(() => { setSlideIndex((prev) => (prev + 1) % ROTATOR_SLIDES.length); }, 3000); return () => clearInterval(timer); }, []); return (
{/* ─── Hero Section ─── */}
{/* Background Image with Overlay */}
Nearle People Background

Nearle for People

Redefining Local Living.
{ROTATOR_SLIDES[slideIndex]}

{/* ─── 9 Core Offerings Bento Grid ─── */}
What we offer

Everything You Need, Just a Click Away

Discover fresh produce, delicious meals, and daily home services from trusted neighborhood businesses.

{OFFERINGS.map((offering) => (
{offering.title}

{offering.title}

{offering.descr}

))}
{/* ─── Localized Stats Block ─── */}
Nearle Network

Join the #1 Neighbourhood App

Bringing local stores to your doorstep instantly.

{STATS.map((s) => (

{s.count}

{s.label}

))}
{/* ─── Ready to Download Section ─── */}
GET READY NOW

Download Nearle

Enjoy the benefits of Neighbourhood Living.

Proudly support your neighbourhood businesses and get everything delivered in minutes.

{/* App badges */}
{/* Visual element representing App */}
{/* Mock UI */}

Nearle App

Coimbatore neighborhood orders delivered in 15 mins.

); }