import { z } from "zod";
export const ProjectTitleSchema = z.string().trim().min(1, "Title is required").max(60);