From fa146feb4f24195bacc6afafdd69b15889ca5827 Mon Sep 17 00:00:00 2001 From: Mike Hartington Date: Thu, 2 Apr 2026 12:15:44 -0400 Subject: [PATCH] fix(site): homepage seo --- apps/site/src/lib/site-metadata.ts | 2 +- apps/site/src/lib/structured-data.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/site/src/lib/site-metadata.ts b/apps/site/src/lib/site-metadata.ts index 5950708193..ad40dc315c 100644 --- a/apps/site/src/lib/site-metadata.ts +++ b/apps/site/src/lib/site-metadata.ts @@ -2,4 +2,4 @@ export const SITE_HOME_TITLE = "Prisma | Instant Postgres plus an ORM for simpler db workflows"; export const SITE_HOME_DESCRIPTION = - "Build, fortify, and grow your application easily with an intuitive data model, type-safety, automated migrations, connection pooling and caching."; + "Prisma is a next-generation Node.js and TypeScript ORM for PostgreSQL, MySQL, SQL Server, SQLite, MongoDB, and CockroachDB. It provides type-safety, automated migrations, and an intuitive data model."; diff --git a/apps/site/src/lib/structured-data.ts b/apps/site/src/lib/structured-data.ts index e30c02c918..6cace4895d 100644 --- a/apps/site/src/lib/structured-data.ts +++ b/apps/site/src/lib/structured-data.ts @@ -1,4 +1,5 @@ import { getBaseUrl } from "@/lib/url"; +import { SITE_HOME_DESCRIPTION } from "@/lib/site-metadata"; type FaqEntry = { question: string; @@ -30,8 +31,7 @@ function toPlainText(value: string): string { export function createSiteStructuredData() { const baseUrl = getBaseUrl(); - const description = - "Prisma is a next-generation Node.js and TypeScript ORM for PostgreSQL, MySQL, SQL Server, SQLite, MongoDB, and CockroachDB. It provides type-safety, automated migrations, and an intuitive data model."; + const description = SITE_HOME_DESCRIPTION; return { "@context": "https://schema.org",