import React from "react"; import Image from "next/image"; import Link from "next/link"; import { MaterialIcon } from "@/components/ui/MaterialIcon"; import { PremiumPageShell } from "@/components/layout/PremiumPageShell"; import { HeroVisualCollage } from "@/components/layout/HeroVisualCollage"; import { FeatureStatsRow } from "@/components/ui/FeatureStatsRow"; import type { Metadata } from "next"; export const metadata: Metadata = { title: "About Us", description: "Discover Nearle, India's first hyperlocal neighborhood living platform connecting residents with local convenience, grocery delivery, and home services.", }; 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", iconClass: "bg-[#6330D6]/[0.07] text-[#6330D6] border-[#6330D6]/10", image: "/images/nearle-how/how-storefront.webp", imageAlt: "3D local store storefront with purple awning", imgFit: "object-contain object-bottom" }, { title: "Our Vision", descr: "Our vision is to make every neighbourhood more connected by helping people discover, support, and shop from the local businesses around them.", icon: "visibility", iconClass: "bg-secondary/[0.07] text-secondary border-secondary/10", image: "/images/nearle-merchant/local-map.webp", imageAlt: "Nearle local neighbourhood map", imgFit: "object-cover object-center" }, { title: "Why Nearle", descr: "Nearle 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 of what their neighbourhood has to offer.", icon: "help_outline", iconClass: "bg-[#6330D6]/10 text-[#6330D6] border-[#6330D6]/20", image: "/images/app-mockup.png", imageAlt: "Nearle app on a smartphone", imgFit: "object-contain object-bottom" } ]; const LOCAL_COUNTERS = [ { count: "Local", label: "Customer First Always", icon: "people" }, { count: "Verified", label: "Business Partners", icon: "store" }, { count: "Growing", label: "Neighbourhood Reach", icon: "location_city" } ]; const HERO_STATS = [ { title: "2km Coverage", icon: "explore", desc: "Hyperlocal radius" }, { title: "Verified Local Stores", icon: "store", desc: "Growing local commerce" }, { title: "Happy Customers", icon: "mood", desc: "Neighbourhood community" }, { title: "Coimbatore & Beyond", icon: "location_city", desc: "Growing neighbourhood reach" } ]; export default function AboutPage() { const collageCards = [ { text: "Local First", icon: "store" }, { text: "Trusted Network", icon: "verified" }, { text: "Connected Communities", icon: "groups" } ]; return ( {/* ─── Hero Section ─── */}
{/* TWO-COLUMN GRID */}
{/* Left Column: Copy & Actions */}
About Nearle

Built for Every
Neighbourhood.

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

Our Story Join Our Journey
{/* Right Column: Visual Collage */}
{/* BOTTOM HERO STATS */}
{/* ─── 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) => (
{/* Content: icon, heading, description */}

{card.title}

{card.descr}

{/* Image: inner rounded container with consistent spacing on all sides */}
{card.imageAlt}
))}
{/* ─── Global Stats counters ─── */}
{LOCAL_COUNTERS.map((c) => (

{c.count}

{c.label}

))}
{/* ─── 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 Explore Nearle
); }