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