import { MaterialIcon } from "@/components/ui/MaterialIcon"; const CARDS = [ { title: "Shops You Know", desc: "Order from familiar neighbourhood stores near you.", icon: "store", color: "bg-primary/5 text-primary border-primary/10", }, { title: "Better Local Value", desc: "Discover local offers and daily savings nearby.", icon: "local_offer", color: "bg-secondary/5 text-secondary border-secondary/10", }, { title: "Easy Reordering", desc: "Save your favourite stores for quick reordering.", icon: "history", color: "bg-[#de96f9]/10 text-primary border-[#de96f9]/20", }, { title: "Support Local Business", desc: "Every order directly supports nearby shopkeepers.", icon: "favorite", color: "bg-rose-500/5 text-rose-700 border-rose-100", }, ]; export function WhyNearle() { return (
{/* Header Section */}
Our Philosophy

Why Nearle Feels Different

Nearle brings the convenience of an app to the stores you already know and trust.

{/* Cards Grid */}
{CARDS.map((card) => (

{card.title}

{card.desc}

))}
); }