Lead Magnet

This commit is contained in:
Timo Knuth
2026-01-16 12:44:13 +01:00
parent 83ea141230
commit be54d388bb
20 changed files with 1211 additions and 21 deletions

View File

@@ -161,4 +161,18 @@ model NewsletterSubscription {
@@index([email])
@@index([createdAt])
}
model Lead {
id String @id @default(cuid())
email String
source String @default("reprint-calculator")
reprintCost Float?
updatesPerYear Int?
annualSavings Float?
createdAt DateTime @default(now())
@@index([email])
@@index([createdAt])
@@index([source])
}