more bracket work

This commit is contained in:
2025-09-04 11:37:33 -05:00
parent 2f6950ee9e
commit d2e6849bca
25 changed files with 8459 additions and 115 deletions

View File

@@ -22,6 +22,13 @@ export interface Team {
tournaments: Tournament[];
}
export interface TeamInfo {
id: string;
name: string;
primary_color: string;
accent_color: string;
}
export const teamInputSchema = z
.object({
name: z.string().min(1, "Team name is required").max(100, "Name too long"),