import Image from "next/image"; import { MaterialIcon } from "@/components/ui/MaterialIcon"; const STEPS = [ { num: "01", title: "Choose Your Area", desc: "See stores available around your neighbourhood.", icon: "location_on", color: "bg-primary/5 text-primary border-primary/10", image: "/images/nearle-redesign/choose-area.webp", alt: "Hand holding a smartphone with a local map and purple location pins", }, { num: "02", title: "Pick Your Favourite Store", desc: "Browse groceries, medicines, and daily essentials nearby.", icon: "storefront", color: "bg-secondary/5 text-secondary border-secondary/10", image: "/images/nearle-redesign/pick-store.webp", alt: "Customer selecting groceries from a nearby store shelf", }, { num: "03", title: "Place Order & Get Delivery", desc: "Order easily and get swift delivery from local partners.", icon: "local_shipping", color: "bg-[#de96f9]/10 text-primary border-[#de96f9]/20", image: "/images/nearle-redesign/delivery-doorstep.webp", alt: "Nearle delivery partner handing a grocery bag to a customer", }, ]; export function HowItWorks() { return (
{/* Header Section */}
Simple Process

From Your Neighbourhood Store to Your Doorstep

{/* Steps Layout - Timeline style */}
{/* Connecting Line (Desktop Only) */}
{STEPS.map((step) => (
{/* Icon Container with watermark number */}
{step.num}
{step.alt}

{step.title}

{step.desc}

))}
); }