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", }, { 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", }, { 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", }, ]; 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.title}

{step.desc}

))}
); }