import Image from "next/image"; import Link from "next/link"; import { MaterialIcon } from "@/components/ui/MaterialIcon"; const FEATURES = [ { title: "Trusted Nearby Stores", icon: "store", desc: "Connect directly with the local merchants you already know.", }, { title: "Short-Distance Delivery", icon: "local_shipping", desc: "Delivered quickly from nearby shops to keep items fresh.", }, { title: "Easy Reorders", icon: "replay", desc: "Save your favourite stores and reorder in seconds.", }, { title: "Support Local Businesses", icon: "favorite", desc: "Help local neighbourhood stores thrive digitally.", }, ]; export function HyperlocalFeatures() { return (
{/* Scoped CSS styles for precise layout enforcement */} {/* Subtle background radial glows */}
{/* Inner container */}
{/* Left Column: Visual Storytelling */}
{/* Main Background Cover Image */}
Local store background
{/* Banner Label at Top */}
Local Order

“Your favourite local store, now online.”

{/* Main Store/Product Card (Middle floating) */}
Local store
Sri Krishna Groceries

Fresh Harvest & Daily Needs

4.9 · Coimbatore
{/* Small Delivery Status Card (Bottom floating) */}

Order Confirmed

Your local store is preparing your order

{/* Right Column: Dark Feature Panel */}
{/* Internal ambient glows */}
Community & Trust

Built Around Your
Neighbourhood

Nearle brings the convenience of an app to the stores you already know and trust, making it easy to support local shops.

{/* Features List with vertical connector line */}
{/* Vertical connector line */}
{FEATURES.map((item) => (
{/* Icon circle */}

{item.title}

{item.desc}

))}
{/* Divider Line above CTA Area */}
{/* Onboarding Call to Action */}
Get Nearle App Learn How to Partner
); }