"use client"; import React from "react"; import Link from "next/link"; import { MaterialIcon } from "@/components/ui/MaterialIcon"; const STRATEGY_CARDS = [ { title: "Our Mission", descr: "To make mediocre, or average stores, perform as well as the great ones. By going beyond selling a product, to establish a solid brand identity and build a relationship with their customers using Nearle.", icon: "target", color: "bg-primary/5 text-primary border-primary/10" }, { title: "Our Vision", descr: "Our vision is to achieve Global Digital Transformation services leadership in providing value-added high quality solution to our customers.", icon: "visibility", color: "bg-secondary/5 text-secondary border-secondary/10" }, { title: "Why Nearle", descr: "Nearly is essential for a business to grow by leveraging the full potential of its neighbourhood. It is an indispensable tool for Consumers to take advantage from its Neighbourhoods.", icon: "help_outline", color: "bg-brand-accent/10 text-brand-accent border-brand-accent/20" } ]; const COUNTERS = [ { count: "100+", label: "Customers Served", icon: "people" }, { count: "100+", label: "Active Businesses", icon: "store" }, { count: "100+", label: "Active Neighborhoods", icon: "location_city" } ]; const TEAM = [ { name: "Nellian Solliappan", role: "Co-Founder & CEO", initials: "NS", color: "bg-primary text-white" }, { name: "Fazul Ilahi", role: "Founder & CTO", initials: "FI", color: "bg-secondary text-white" }, { name: "Sagar", role: "Co-Founder & COO", initials: "S", color: "bg-brand-accent text-brand-dark" }, { name: "Prithvi", role: "Investor", initials: "P", color: "bg-surface-container text-on-surface" }, { name: "Sriram Sundararajan", role: "Investor", initials: "SS", color: "bg-surface-container-highest text-brand-dark" } ]; export default function AboutPage() { return (
{/* ─── Hero Section ─── */}

We are Nearle

We build Neighbourhoods.

Nearle is India's first hyper-local managed “Neighbourhood living platform” which brings all the amenities and requirements of residents to their fingertips.

{/* ─── Intro Description Block ─── */}
Our Platform

Nearle Neighbourhood Commerce

We are redefining modern urban living by providing never before convenience. By linking local physical stores to an integrated digital framework, Nearle boosts merchant sales and delivers products instantly, fostering closer, cleaner, and faster local economies.

{/* ─── Strategy Cards (Mission, Vision, Why) ─── */}
{STRATEGY_CARDS.map((card) => (

{card.title}

{card.descr}

))}
{/* ─── Global Stats counters ─── */}
{COUNTERS.map((c) => (

{c.count}

{c.label}

))}
{/* ─── Team Section ─── */}
{/* Left: About team content */}
Who we are

Team Nearle

Nearle is built on the core concept of “Boost business by trust”. We assist local offline stores in successfully spreading their brand message to the neighborhood to open new revenue streams.

Our team combines technology skills, domain expertise, and operational focus to ensure the highest quality solution for our customers.

Contact Team
{/* Right: Team Grid cards */}
{TEAM.map((t) => (
{t.initials}

{t.name}

{t.role}

))}
{/* ─── Client Testimonial & Quote ─── */}

Partner Feedback

“Nearle has opened up immense opportunities for us to survive the competition, sustain in business, and gain our customers back.”
DK

Darshan K

Erranderz Partner

{/* ─── Brand Building Banner ─── */}
Don't miss the opportunity

Build Your Brand with Nearle

Delight your neighborhood with a personalized online experience. Unlock revenue opportunities and local marketing strategies that will take your business further.

Register Merchant Download App
); }