taxonomy/lib/validations/og.ts

7 lines
163 B
TypeScript

import * as z from "zod"
export const ogImageSchema = z.object({
heading: z.string(),
type: z.string(),
mode: z.enum(["light", "dark"]).default("dark"),
})