Skip to content

Commit 4f02e5c

Browse files
author
carla
authored
Merge branch 'main' into fix/image-optimizations
2 parents 0305458 + b3b75c4 commit 4f02e5c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

apps/site/src/lib/site-metadata.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ export const SITE_HOME_TITLE =
22
"Prisma | Instant Postgres plus an ORM for simpler db workflows";
33

44
export const SITE_HOME_DESCRIPTION =
5-
"Build, fortify, and grow your application easily with an intuitive data model, type-safety, automated migrations, connection pooling and caching.";
5+
"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.";

apps/site/src/lib/structured-data.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { getBaseUrl } from "@/lib/url";
2+
import { SITE_HOME_DESCRIPTION } from "@/lib/site-metadata";
23

34
type FaqEntry = {
45
question: string;
@@ -30,8 +31,7 @@ function toPlainText(value: string): string {
3031

3132
export function createSiteStructuredData() {
3233
const baseUrl = getBaseUrl();
33-
const description =
34-
"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.";
34+
const description = SITE_HOME_DESCRIPTION;
3535

3636
return {
3737
"@context": "https://schema.org",

0 commit comments

Comments
 (0)