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