From 8021b86420673af3bf7d136de589d05379e5fc5a Mon Sep 17 00:00:00 2001 From: ashish <68690233+asrvd@users.noreply.github.com> Date: Tue, 9 May 2023 10:34:37 +0530 Subject: [PATCH] Replace prisma with drizzle in metadata of drizzle example (#692) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ### Description The metadata had prisma instead of drizzle inside it, just replaced it. ### Type of Change - [ ] New Example - [x] Example updates (Bug fixes, new features, etc.) - [ ] Other (changes to the codebase, but not to examples) ### New Example Checklist - [ ] 🛫 `npm run new-example` was used to create the example - [ ] 📚 The template wasn't used but I carefuly read the [Adding a new example](https://github.com/vercel/examples#adding-a-new-example) steps and implemented them in the example - [ ] 📱 Is it responsive? Are mobile and tablets considered? --- storage/postgres-drizzle/README.md | 2 +- storage/postgres-drizzle/app/layout.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/storage/postgres-drizzle/README.md b/storage/postgres-drizzle/README.md index 381b344b0..157294882 100644 --- a/storage/postgres-drizzle/README.md +++ b/storage/postgres-drizzle/README.md @@ -1,7 +1,7 @@ --- name: Vercel Postgres + Drizzle Next.js Starter slug: postgres-drizzle -description: Simple Next.js template that uses Vercel Postgres as the database and Prisma as the ORM. +description: Simple Next.js template that uses Vercel Postgres as the database and Drizzle as the ORM. framework: Next.js useCase: Starter css: Tailwind diff --git a/storage/postgres-drizzle/app/layout.tsx b/storage/postgres-drizzle/app/layout.tsx index 64ee14696..69160a0ae 100644 --- a/storage/postgres-drizzle/app/layout.tsx +++ b/storage/postgres-drizzle/app/layout.tsx @@ -2,9 +2,9 @@ import './globals.css'; import { Inter } from 'next/font/google'; export const metadata = { - title: 'Vercel Postgres Demo with Prisma', + title: 'Vercel Postgres Demo with Drizzle', description: - 'A simple Next.js app with Vercel Postgres as the database and Prisma as the ORM', + 'A simple Next.js app with Vercel Postgres as the database and Drizzle as the ORM', }; const inter = Inter({