Initial Commit

This commit is contained in:
Stavros
2025-01-19 13:40:06 +02:00
commit c0e085ea10
34 changed files with 3195 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import { z } from "zod";
export const userContextSchema = z.object({
isLoggedIn: z.boolean(),
});
export type UserContextSchemaType = z.infer<typeof userContextSchema>;