"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, fadeIn, scaleIn, staggerContainer, viewport } from "@/lib/animations"; const FEATURES = [ { title: "Digital Catalogue", desc: "Showcase your products online and keep your catalogue updated.", icon: "menu_book", visual: "/images/nearle-merchant/catalogue-ui.webp", alt: "Clean grocery catalogue interface preview", tone: "bg-primary/8 text-primary", }, { title: "QR Ordering", desc: "Let customers scan, browse, and place orders directly from your store.", icon: "qr_code", visual: "/images/nearle-merchant/qr-stand.webp", alt: "QR ordering stand on a local grocery store counter", tone: "bg-secondary/8 text-secondary", }, { title: "Local Discovery", desc: "Get discovered by nearby customers searching for products you sell.", icon: "location_on", visual: "/images/nearle-merchant/local-map.webp", alt: "Local discovery map with purple pins and a store listing", tone: "bg-[#de96f9]/10 text-primary", }, { title: "Delivery Support", desc: "Deliver orders easily with your own staff or trusted local delivery partners.", icon: "local_shipping", visual: "/images/nearle-merchant/delivery-support.webp", alt: "Local delivery partner handing a grocery bag to a customer", tone: "bg-rose-500/5 text-rose-600", }, ]; const BENEFITS = [ { icon: "verified_user", title: "Verified & Trusted", desc: "All stores are verified for quality and reliability.", }, { icon: "groups", title: "2L+ Customers", desc: "Join thousands of merchants already growing with Nearle.", }, { icon: "trending_up", title: "Growing Together", desc: "We provide the tools, you focus on your customers.", }, { icon: "headset_mic", title: "Support That Cares", desc: "Our team is always here to help you succeed.", }, ]; function LocalDiscoveryVisual() { return (
{/* Map Background (SVG) */} {/* Halos around main pin */}
{/* Main Pin */}
{/* Other Pins */} {[ ["left-[15%] top-[25%]", "bg-primary", "scale-75"], ["left-[50%] top-[15%]", "bg-primary", "scale-[0.65]"], ["left-[22%] top-[68%]", "bg-primary", "scale-[0.70]"], ].map(([pos, color, scale], i) => (
))} {/* Store Card (Right Side) */}
Owner

Kumar Provision Store

Gandhi Nagar, West Delhi

Groceries Essentials
Open Closes 10:00 PM
); } export function BusinessSection() { return (
{/* ── 1. Left text content ── */} {/* Badge */}
Merchant Partnerships

Bring Your Store Online with{" "} Nearle.

Reach more nearby customers, accept online orders, promote local offers, and grow repeat sales, while staying in control of your business.

Stay in control of your pricing and orders
Build direct relationships with local families
Partner With Nearle Talk to Our Team
{/* ── 2. Feature cards ── */} {FEATURES.map((feature) => (

{feature.title}

{feature.desc}

{feature.title === "Local Discovery" ? ( ) : ( {feature.alt} )}
))}
{/* ── 3. Success story ── */}
Indian grocery shop owner using a smartphone inside a kirana store
Success Story

Kumar Provision Store

Nearle helped us reach more customers in our area and manage orders effortlessly.

{/* ── Benefits strip ── */}
{BENEFITS.map((b) => (
{b.title}
{b.desc}
))}
); }