style: add styling for pages and forms

This commit is contained in:
Riccardo
2024-07-08 10:47:54 +02:00
parent eadc3269cf
commit 4aa1ef8463
7 changed files with 141 additions and 70 deletions

View File

@@ -1,5 +1,9 @@
import { z } from 'zod';
export const ProfileSchema = z.object({
email: z.string()
});
export const CustomerFormCreateSchema = z.object({
type: z.string(),
text: z.string()