Add official RIT student clubs, matcher quiz, social link hub, and logos

This commit is contained in:
Chanakyan
2026-07-22 14:33:47 +05:30
parent 2bf7985f90
commit 4ff91cd228
31 changed files with 1028 additions and 313 deletions

View File

@@ -85,14 +85,31 @@ export interface Event {
}
// ─── Clubs ───────────────────────────────────────────────────────────────────
export interface ClubSocialLinks {
instagram?: string;
linkedin?: string;
whatsapp?: string;
youtube?: string;
github?: string;
website?: string;
}
export interface Club {
id: string;
name: string;
description: string;
details?: string;
category: string;
members: number;
logo?: string;
presidentName?: string;
year?: string;
contactEmail?: string;
contactPhone?: string;
logo?: string;
logoUrl?: string;
icon?: string;
defaultRank?: number;
socialLinks?: ClubSocialLinks;
}
// ─── Community / Q&A ─────────────────────────────────────────────────────────