Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/site/src/lib/site-metadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.";
4 changes: 2 additions & 2 deletions apps/site/src/lib/structured-data.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { getBaseUrl } from "@/lib/url";
import { SITE_HOME_DESCRIPTION } from "@/lib/site-metadata";

type FaqEntry = {
question: string;
Expand Down Expand Up @@ -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",
Expand Down
Loading