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 { AboutHero } from "@/components/heroes/AboutHero"; import { AnimatedSection } from "@/components/motion/AnimatedSection"; import { AnimatedGrid, AnimatedCard } from "@/components/motion/AnimatedGrid"; import { FloatingDelivery } from "@/components/about/FloatingDelivery"; 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.webp", 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" } ]; export default function AboutPage() { return ( {/* ─── Hero Section ─── */} {/* ─── 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
); }