import { z } from "zod" import { imageSchema } from "../image" export const gallerySchema = z.object({ heroImages: z.array(imageSchema), smallerImages: z.array(imageSchema), })