update why nearle page

This commit is contained in:
2026-07-19 23:07:18 +05:30
parent 4073dc8386
commit 9abd59ec85
51 changed files with 3748 additions and 62 deletions

View File

@@ -0,0 +1,61 @@
import type { Metadata } from "next";
import { PremiumPageShell } from "@/components/layout/PremiumPageShell";
import { WhyNearleHero } from "@/components/why-nearle/WhyNearleHero";
import { CommerceEvolution } from "@/components/why-nearle/CommerceEvolution";
import { AICommerceExplainer } from "@/components/why-nearle/AICommerceExplainer";
import { BeforeAfterFlow } from "@/components/why-nearle/BeforeAfterFlow";
import { NeighborhoodStores } from "@/components/why-nearle/NeighborhoodStores";
import { EcosystemDiagram } from "@/components/why-nearle/EcosystemDiagram";
import { ProductLLMPipeline } from "@/components/why-nearle/ProductLLMPipeline";
import { ProductLLMCompare } from "@/components/why-nearle/ProductLLMCompare";
import { AICommerceComparison } from "@/components/ui/AICommerceComparison";
import { FutureVision } from "@/components/why-nearle/FutureVision";
import { PullQuote } from "@/components/ui/PullQuote";
import { AICommerceCTA } from "@/components/why-nearle/AICommerceCTA";
export const metadata: Metadata = {
title: "What is AI Commerce?",
description:
"AI Commerce starts where quick commerce stops. Nearle digitizes neighbourhood stores with AI, digital storefronts, and ordering — instead of replacing them. Learn how AI Commerce works.",
openGraph: {
title: "What is AI Commerce? | Nearle",
description:
"Neighbourhood stores already have trust, customers, and location. Nearle adds AI, a digital storefront, inventory, and ordering. This is AI Commerce.",
url: "https://nearle.in/why-nearle",
},
alternates: { canonical: "/why-nearle" },
};
export default function WhyNearlePage() {
return (
<PremiumPageShell>
<WhyNearleHero />
{/* 1 · Why AI Commerce — evolution timeline */}
<CommerceEvolution />
{/* 2 · The Problem — stores already have vs Nearle adds */}
<AICommerceExplainer />
{/* 3 · Before vs After — traditional vs AI commerce flow */}
<BeforeAfterFlow />
{/* 4 · Why neighborhood stores matter */}
<NeighborhoodStores />
{/* 5 · The AI Commerce ecosystem */}
<EcosystemDiagram />
{/* 6 · ProductLLM workflow pipeline */}
<ProductLLMPipeline />
{/* 7 · Why ProductLLM — manual vs AI catalogs */}
<ProductLLMCompare />
{/* Supporting comparison — AI Commerce vs Quick Commerce */}
<AICommerceComparison />
<PullQuote
lines={[
"Quick commerce tried to out-run the neighborhood.",
"AI Commerce runs on it.",
]}
/>
{/* 8 · Future vision roadmap */}
<FutureVision />
{/* 9 · Premium closing CTA */}
<AICommerceCTA />
</PremiumPageShell>
);
}