"use client"; import React, { useState, useEffect } from "react"; import Image from "next/image"; import Link from "next/link"; import { MaterialIcon } from "@/components/ui/MaterialIcon"; const ROTATOR_WORDS = [ "Stand above your competitors!", // "Reach the right people, near you.", "Get noticed in your locality!" ]; const PROCESS_STEPS = [ { step: "01", title: "Get Online", descr: "Introduce your business to your Neighbourhood. Compete with online businesses through your offline store.", icon: "storefront", color: "bg-primary/5 text-primary border-primary/10" }, { step: "02", title: "Get Noticed", descr: "Your products get published to Nearle customers in your neighborhood through the app. Customers search based on location, products, discounts, and promos.", icon: "campaign", color: "bg-secondary/5 text-secondary border-secondary/10" }, { step: "03", title: "Get Simplified", descr: "Delight the community with a personalized online experience. Unlock revenue opportunities and marketing strategies that will take your business further.", icon: "auto_awesome", color: "bg-brand-accent/10 text-brand-accent border-brand-accent/20" } ]; const FEATURES = [ { title: "Direct Customer Access", descr: "Build direct relationships and trust with residents in your immediate vicinity." }, { title: "Become a Partner", descr: "Be part of a strong community of like-minded people. A unified partner for neighborhood needs." }, { title: "Build Your Brand", descr: "Brand your business on Nearle and reach out to your community with ease." }, { title: "Huge Opportunity", descr: "Unlock revenue opportunities and marketing strategies that will take your business further." }, { title: "Delight Your Customers", descr: "Delight customers in the neighborhood with a personalized online shopping experience." }, { title: "Unique Model", descr: "Hyperlocal commerce is an effective, sustainable model to meet today's consumer needs." }, { title: "Reach Right Audience", descr: "We target your ideal customers — people in your neighborhood search for what you offer." }, { title: "Increase Your Customers", descr: "Increase walk-in and online customers by targeting local demand." } ]; const STATS = [ { value: "40%+", label: "Avg Revenue Increase", icon: "trending_up", bg: "bg-surface-container" }, { value: "12k+", label: "Daily Orders Handled", icon: "groups", bg: "bg-primary text-white" }, { value: "5k+", label: "Active Partners", icon: "storefront", bg: "bg-white border border-outline-variant/15" }, { value: "24/7", label: "Merchant Support", icon: "support_agent", bg: "bg-surface-container" } ]; export default function BusinessesPage() { const [wordIndex, setWordIndex] = useState(0); useEffect(() => { const timer = setInterval(() => { setWordIndex((prev) => (prev + 1) % ROTATOR_WORDS.length); }, 3000); return () => clearInterval(timer); }, []); return (
{/* ─── Hero Section with Animated Rotator ─── */}
{/* Background Image with Overlay */}
Nearle Business Background

Nearle for Business

Power your business.
{ROTATOR_WORDS[wordIndex]}

{/* ─── Intro Highlight Banner ─── */}
Together, we grow

Get set in minutes and delight the Neighborhood

Nearle is built to help businesses like Yours establish a local online presence and empower neighborhood customers to discover and interact with you directly.

Talk to an Expert
{/* ─── Timeline / Core Process Steps ─── */}
How it works

Build Your Neighborhood Brand

Three simple milestones to scale your retail reach from offline streets straight into neighborhood homes.

{PROCESS_STEPS.map((ps) => (
{ps.step}

{ps.title}

{ps.descr}

))}
{/* ─── Grid Stats & Value Prop ─── */}
{/* Left side: features block (7 cols) */}
Our features

Move Your Business Forward

Be a part of a community of like-minded people. Brand your business on Nearle and reach out to your neighborhood with ease.

{FEATURES.map((feat) => (

{feat.title}

{feat.descr}

))}
{/* Right side: stats quadrant (5 cols) */}
{STATS.map((stat, i) => (

{stat.value}

{stat.label}

))}
{/* ─── Join/Download Call to Action ─── */}

Nearle is Essential for Business Growth

Leverage the full potential of your neighborhood. Stand above the rest, increase customers, and scale your brand today.

Register as Partner Contact Experts
); }