"use client"; import Image from "next/image"; import { motion } from "framer-motion"; import { FeatureStatsRow } from "@/components/ui/FeatureStatsRow"; import { slideInLeftSubtle, fadeIn, staggerContainer, } from "@/lib/animations"; const HERO_BENEFITS = [ { title: "More Visibility Across Nearle", icon: "visibility", desc: "Get discovered by locals" }, { title: "Easy Order Management", icon: "assignment", desc: "Track and fulfill cleanly" }, { title: "Grow Repeat Customers", icon: "trending_up", desc: "Build neighborhood loyalty" }, { title: "Local Delivery Support", icon: "local_shipping", desc: "Deliver fast & verified" }, ]; const badgeVariant = slideInLeftSubtle; const titleVariant = { hidden: { opacity: 0, y: 28 }, visible: { opacity: 1, y: 0, transition: { duration: 0.55, ease: [0.22, 1, 0.36, 1] as [number, number, number, number] }, }, }; const descVariant = fadeIn; export function BusinessHero() { return (
{/* Left Column: animated with unique stagger */} Nearle for Business Grow Your Local Business,
Neighbourhood by Neighbourhood.
Get discovered by nearby customers, manage orders, and build repeat business from one simple platform.
); }