FANS
Campus fan engagement and community platform — rallies, chapters, and member-facing content for school spirit programs.
Overview
FANS targets campus communities that need a dedicated engagement layer — announcements, member profiles, and event-driven participation — separate from the core LMS. The portfolio entry describes a TypeScript + React pilot for institutional fan clubs and alumni chapters.
Intended capabilities
- Member profiles and chapter organization
- Event announcements with RSVP-style tracking
- Moderation tools for official club accounts
- Mobile-friendly React surfaces for game-day traffic
export interface FanMember {
id: string;
chapterId: string;
displayName: string;
joinedAt: string;
role: 'member' | 'moderator' | 'admin';
}