feat: add form for submitting testimonials
Node.js CI / Lint and Test (pull_request) Failing after 1m15s

This commit is contained in:
2025-02-20 15:40:31 -08:00
parent 439df9968a
commit 56e2b391b2
13 changed files with 219 additions and 1 deletions
+9
View File
@@ -103,3 +103,12 @@ model Mentorships {
paymentUnderstanding Boolean
createdAt DateTime @default(now())
}
model Testimonials {
id String @id @default(auto()) @map("_id") @db.ObjectId
email String @unique
firstName String
lastName String
content String
createdAt DateTime @default(now())
}