import { z } from "zod" import { Lang } from "@/constants/languages" const langs = Object.keys(Lang) as [keyof typeof Lang] export const getLoyaltyPageInput = z.object({ href: z.string().min(1, { message: "href is required" }), locale: z.enum(langs), })