"use client"; import Image from "next/image"; import Link from "next/link"; import { motion } from "framer-motion"; import { MaterialIcon } from "@/components/ui/MaterialIcon"; import { fadeUp, slideInLeft, staggerContainer, viewport } from "@/lib/animations"; 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 (
{/* Subtle background radial glows */}
{/* Inner container */}
{/* Left Column: Visual Storytelling */}
Offers Nearby
Open Now
{[ ["left-[31%] top-[24%]", "bg-primary", "scale-90"], ["right-[20%] top-[22%]", "bg-[#006D37]", "scale-100"], ["right-[13%] top-[39%]", "bg-primary", "scale-90"], ["left-[20%] top-[52%]", "bg-primary", "scale-80"], ["left-[37%] bottom-[31%]", "bg-[#006D37]", "scale-95"], ["right-[31%] top-[33%]", "bg-primary", "scale-100"], ].map(([position, color, scale]) => (
))}
Sri Krishna Groceries storefront
Sri Krishna Groceries

Fresh Harvest & Daily Needs

4.8 Open Now 0.8 km away

Order Confirmed

Your local store is preparing your order

{/* Right Column: Feature Panel directly on page background */}
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
); }