import React from "react"; import Image from "next/image"; import Link from "next/link"; import { MaterialIcon } from "@/components/ui/MaterialIcon"; import { PremiumPageShell } from "@/components/layout/PremiumPageShell"; import { HeroVisualCollage } from "@/components/layout/HeroVisualCollage"; import { FeatureStatsRow } from "@/components/ui/FeatureStatsRow"; import type { Metadata } from "next"; export const metadata: Metadata = { title: "Nearle for People", description: "Discover verified local stores, save your favourite merchants, and order everyday essentials with superfast local delivery from shops within your 2km neighbourhood.", }; const OFFERINGS = [ { title: "Elegant Living", tag: "Your 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-purple-v5.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 LOCAL_STATS = [ { count: "Local", label: "Verified Restaurants", icon: "restaurant" }, { count: "Fresh", label: "Green Grocers", icon: "local_mall" }, { count: "Ready", label: "Home Stores", icon: "shopping_cart" }, { count: "Trusted", label: "Service Providers", icon: "handyman" } ]; const APP_BENEFITS = [ { icon: "store", title: "Nearby Stores", microcopy: "Support local shopkeepers", text: "Find and explore the unique shops in your immediate area.", iconClass: "bg-amber-500/10 border-amber-500/20 text-amber-300", cardClass: "lg:translate-x-[-10px] lg:-translate-y-2 lg:rotate-[-1deg]", bgVisual: "store", bgVisualClass: "text-amber-500/5" }, { icon: "favorite", title: "Save Favourites", microcopy: "Your daily picks, one tap away", text: "Keep your trusted local merchants always within reach.", iconClass: "bg-rose-500/10 border-rose-500/20 text-rose-300", cardClass: "lg:translate-x-[10px] lg:translate-y-0 lg:rotate-[1deg]", bgVisual: "favorite", bgVisualClass: "text-rose-500/5" }, { icon: "local_offer", title: "Local Offers", microcopy: "Deals from people you know", text: "Unlock exclusive deals directly from nearby neighbourhood shops.", iconClass: "bg-emerald-500/10 border-emerald-500/20 text-emerald-300", cardClass: "lg:translate-x-[-5px] lg:translate-y-2 lg:rotate-[-0.5deg]", bgVisual: "local_offer", bgVisualClass: "text-emerald-500/5" } ]; const HERO_STATS = [ { title: "Verified Local Stores", icon: "store", desc: "Growing local commerce" }, { title: "2km Neighbourhood", icon: "location_on", desc: "Hyperlocal service radius" }, { title: "Happy Customers", icon: "mood", desc: "Growing neighbourhood community" }, { title: "Trusted Platform", icon: "star", desc: "Loved by local shoppers" } ]; export default function PeoplePage() { const collageCards = [ { text: "Discover Nearby", icon: "explore" }, { text: "Save Favourites", icon: "favorite" }, { text: "Order Anytime", icon: "shopping_bag" } ]; return ( {/* ─── Hero Section ─── */}
{/* TWO-COLUMN GRID */}
{/* Left Column: Copy & Actions */}
Nearle for People

Your Neighbourhood,
Now in Your Pocket.

Discover verified local stores, save your favorite merchants, and order everyday items with superfast local fulfillment.

Get the App Explore Stores
{/* Right Column: Visual Collage */}
{/* BOTTOM HERO STATS */}
{/* ─── Bento Grid of Offerings ─── */}
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

The Neighbourhood App

Bringing local stores to your doorstep instantly.

{LOCAL_STATS.map((s) => (

{s.count}

{s.label}

))}
{/* ─── Ready to Download Section ─── */}
{/* Subtle glow layers */}
{/* DESKTOP LAYOUT */}
{/* Left Column: Copy & Download badges */}
NEARLE APP

Your Neighbourhood,
Now in Your Pocket.

Browse nearby stores, save your favourites, and order everyday essentials with ease.

Discover groceries, medicines, food, and local offers from stores you already know and trust.

Available on
App Store
Available on
Google Play
{/* Middle Column: Benefit Cards */}
{APP_BENEFITS.map((b) => (

{b.title}

{b.microcopy}

{b.text}

))}
{/* Right Column: Phone Mockup */}
Good evening 👋
Search nearby stores
Grocery
Pharmacy
Food
Daily Groceries
Verified Store • Nearby

Nearle App

Your nearby stores, all in one place.

Order Confirmed

Preparing your order

{/* MOBILE LAYOUT */}
NEARLE APP

Your Neighbourhood,
Now in Your Pocket.

Browse nearby stores, save your favourites, and order everyday essentials with ease.

Good evening 👋
Search stores
Grocery
Pharmacy
Food
Daily Groceries
Verified • Nearby

Nearle App

Your stores near you.

Order Confirmed

Preparing your order

{APP_BENEFITS.map((b) => (

{b.title}

{b.text}

))}
Available on
App Store
Available on
Google Play
); }