add public feedback/contact option
All checks were successful
delpoy / build-and-deploy (push) Successful in 1m5s

This commit is contained in:
2024-11-30 03:00:46 +01:00
parent ceaf006dd5
commit 55798fd294
10 changed files with 175 additions and 28 deletions

View File

@ -0,0 +1,6 @@
import { z } from 'zod';
export const FeedbackSubmitSchema = z.object({
content: z.string(),
type: z.enum(['feedback', 'contact'])
});