import { z } from "zod" export const breakfastFormSchema = z.object({ breakfast: z.string().or(z.literal("false")), })