import Image from "next/image"; import Link from "next/link"; import { MaterialIcon } from "@/components/ui/MaterialIcon"; const QUICK_LINKS = [ { name: "Daily Groceries", icon: "shopping_basket", label: "Fresh & On-Time", }, { name: "Hot Meals", icon: "fastfood", label: "Quick & tasty", }, { name: "wellness ", icon: "medical_services", label: "Essential & Trusted", }, { name: "More Services", icon: "store", label: "Explore More", }, ]; export function Hero() { return ( <>
{/* ─── Base Dark Background Panel (Clipped diagonally) ─── */}
{/* Subtle Background Dot Texture */}
Subtle Background
{/* Soft purple radial glow */}
{/* ─── Main Content Wrapper ─── */}
{/* Left Column: Text & Search Content */}
Neighbourhood commerce, made simple

Your Favourite Local Stores,
Now at Your Doorstep.

Order groceries, medicines, food and everyday essentials from trusted stores near you — all in one convenient app.

{/* CTAs */}
Explore Nearby Stores List Your Store
{/* Trust points */}
Real local shops
Fair local prices
Neighbourhood delivery
{/* Mobile/Tablet Only Nearle Bag Logo with context pins */}
Nearle delivery
{/* Right Column: Centered Nearle bag visual with local commerce context pins and route line */}
Nearle delivery
{/* Overlapping Quick Category Links */}
{QUICK_LINKS.map((item) => (

{item.name}

{item.label}

))}
); }