import { z } from "zod"; const NamePartSchema = z.string().trim().max(60, "Must be 60 characters or fewer"); export const ProfileNameSchema = z.object({ firstName: NamePartSchema, lastName: NamePartSchema, }); export type ProfileName = z.infer;