From 68d6e34d10fb58fef3a0abd1e18afb564be0718b Mon Sep 17 00:00:00 2001 From: Ankur Datta <64993082+ankur-arch@users.noreply.github.com> Date: Wed, 17 Jun 2026 12:18:48 +0200 Subject: [PATCH] feat(site): simplify tagline to "Agent Infrastructure for TypeScript" Drop the "Prisma is The" lead-in and the "Prisma |" title prefix; the audience already knows they're on the Prisma site. Hero, structured-data name, and home page title now all read "Agent Infrastructure for TypeScript". Co-Authored-By: Claude Opus 4.8 (1M context) --- apps/site/src/app/(index)/page.tsx | 4 ++-- apps/site/src/lib/site-metadata.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/site/src/app/(index)/page.tsx b/apps/site/src/app/(index)/page.tsx index 01453c32fa..e0cdf887f1 100644 --- a/apps/site/src/app/(index)/page.tsx +++ b/apps/site/src/app/(index)/page.tsx @@ -218,7 +218,7 @@ export const metadata = createPageMetadata({ const homeStructuredData = createCollectionPageStructuredData({ path: "/", - name: "Prisma is The Agent Infrastructure for TypeScript", + name: "Agent Infrastructure for TypeScript", description: SITE_HOME_DESCRIPTION, items: [ { @@ -275,7 +275,7 @@ export default function SiteHome() { className="mb-0 text-center mt-0 type-title-6xl text-foreground-neutral max-w-4xl mx-auto text-balance" style={{ fontSize: "clamp(2rem, 6vw, 3.25rem)", lineHeight: 1.12 }} > - Prisma is The Agent Infrastructure for TypeScript + Agent Infrastructure for TypeScript

diff --git a/apps/site/src/lib/site-metadata.ts b/apps/site/src/lib/site-metadata.ts index ec6f1f61ac..ec27fba157 100644 --- a/apps/site/src/lib/site-metadata.ts +++ b/apps/site/src/lib/site-metadata.ts @@ -1,4 +1,4 @@ -export const SITE_HOME_TITLE = "Prisma | The Agent Infrastructure for TypeScript"; +export const SITE_HOME_TITLE = "Agent Infrastructure for TypeScript"; export const SITE_HOME_DESCRIPTION = "Prisma gives TypeScript and Node.js teams Prisma ORM, Prisma Postgres, and Prisma Compute: a type-safe ORM, managed Postgres, and Compute for deploying TypeScript apps, from schema to deployed app.";