Start working on the profile refactoring.

This commit is contained in:
charlesgauthereau
2025-12-21 16:55:12 +01:00
parent 428782e8a4
commit 116229a29e
77 changed files with 5076 additions and 509 deletions
@@ -0,0 +1,9 @@
import z from "zod";
import {zString} from "@/lib/zod";
export const ProfileSchema = z.object({
name: zString().nonempty(),
role: zString().nonempty(),
});
export type ProfileSchemaType = z.infer<typeof ProfileSchema>;