first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 22:16:43 +03:00
commit 6d95e27114
97 changed files with 15687 additions and 0 deletions

8
lib/schemas/login.ts Normal file
View File

@@ -0,0 +1,8 @@
import { z } from "zod";
export const loginSchema = z.object({
email: z.string().email("Geçerli bir email adresi giriniz"),
password: z.string().min(1, "Şifre alanı zorunludur"),
});
export type LoginSchema = z.infer<typeof loginSchema>;