import { z } from "zod"; export const loginSchema = z.object({ username: z.string(), password: z.string(), }); export type LoginSchema = z.infer;