import Image from "next/image"; import { MaterialIcon } from "@/components/ui/MaterialIcon"; const QUICK_LINKS = [ { name: "Hot Meals", icon: "fastfood", label: "Quick & tasty", }, { name: "Daily Groceries", icon: "shopping_basket", label: "Fresh & On-Time", }, { name: "Health & Care", icon: "medical_services", label: "Essential & Trusted", }, { name: "More Services", icon: "grid_view", label: "Explore More", }, ]; export function Hero() { return (
{/* ─── Base Dark Background Panel (Clipped diagonally) ─── */}
{/* Subtle Background Dot Texture (Minimal, barely visible) */}
Subtle Background
{/* Minimal Route Animation (2-3 thin lines only, very subtle) */} {/* Minimal glow nodes - only 2 small ones at top */} {/* Only 2 very thin route lines at top - staying clear of text area */} {/* Soft purple radial glow behind the bike near the diagonal edge (clipped) */}
{/* ─── Main Content Wrapper ─── */}
{/* Left Column: Text & Search Content */}
Express Services

Express
Neighborhood

Get groceries, hot meals, daily essentials, and local professional services delivered from trusted partners within{" "} 25-30 minutes.

{/* Search Input Bar */}
{/* Popular tags below */}
Popular: {["Fresh Produce", "African Bakery", "Pet Care"].map((tag) => ( {tag} ))}
{/* Right Column: Dominant delivery image (Overlapping) */}
Nearle delivery
{/* Overlapping Quick Category Links (Anchored at the bottom edge) */}
{QUICK_LINKS.map((item) => (

{item.name}

{item.label}

))}
); }