import { z } from "zod"; export const CategoryNameSchema = z.string().trim().min(1, "Name is required").max(40);