First frontend

This commit is contained in:
2026-04-30 21:37:21 +02:00
parent c3e98af5b6
commit ac48e03404
16 changed files with 1764 additions and 5 deletions
+5 -1
View File
@@ -18,6 +18,10 @@ export const createProjectSchema = z.object({
name: z.string().min(1),
});
export const createDistributionBoardSchema = z.object({
name: z.string().min(1),
});
export type CreateConsumerInput = z.infer<typeof createConsumerSchema>;
export type CreateProjectInput = z.infer<typeof createProjectSchema>;
export type CreateDistributionBoardInput = z.infer<typeof createDistributionBoardSchema>;