|
| 1 | +# League Display Enhancement |
| 2 | + |
| 3 | +## Overview |
| 4 | +The LeaguesCarousel now displays detailed information about each league including starting dates and facilitating organizations. |
| 5 | + |
| 6 | +## Updated League Data Structure |
| 7 | + |
| 8 | +Each league now includes: |
| 9 | +```javascript |
| 10 | +{ |
| 11 | + id: 'league-id', |
| 12 | + name: 'League Name', |
| 13 | + title: 'Full League Title', |
| 14 | + description: 'League description...', |
| 15 | + cover: '/path/to/cover.jpg', |
| 16 | + color: '#HEX_COLOR', |
| 17 | + startingDate: 'DD Month YYYY', // NEW |
| 18 | + facilitatedBy: 'Organization Name' // NEW |
| 19 | +} |
| 20 | +``` |
| 21 | + |
| 22 | +## Current League Schedule |
| 23 | + |
| 24 | +### 📚 **Soft Skills League** |
| 25 | +- **Starting:** 28 August 2025 |
| 26 | +- **Facilitated by:** Zeal Society |
| 27 | +- **Focus:** Communication, leadership, and interpersonal skills |
| 28 | + |
| 29 | +### 💰 **Finance League** |
| 30 | +- **Starting:** 30 August 2025 |
| 31 | +- **Facilitated by:** Fnnest NITJ |
| 32 | +- **Focus:** Financial literacy and investment strategies |
| 33 | + |
| 34 | +### 💻 **Competitive Programming League** |
| 35 | +- **Starting:** 1 September 2025 |
| 36 | +- **Facilitated by:** Coding Club |
| 37 | +- **Focus:** Algorithmic thinking and problem-solving |
| 38 | + |
| 39 | +### 🤖 **Machine Learning League** |
| 40 | +- **Starting:** 2 September 2025 |
| 41 | +- **Facilitated by:** OpenLearn |
| 42 | +- **Focus:** ML algorithms and AI applications |
| 43 | + |
| 44 | +### ⚛️ **Quantum Computing League** |
| 45 | +- **Starting:** 5 September 2025 |
| 46 | +- **Facilitated by:** QMania |
| 47 | +- **Focus:** Quantum algorithms and computational science |
| 48 | + |
| 49 | +### 🌐 **Internet of Things League** |
| 50 | +- **Starting:** 7 September 2025 |
| 51 | +- **Facilitated by:** Electronics Society |
| 52 | +- **Focus:** Connected devices and smart systems |
| 53 | + |
| 54 | +## Visual Display Features |
| 55 | + |
| 56 | +### Card Layout |
| 57 | +Each league card now shows: |
| 58 | +1. **League Badge** (top-left with color coding) |
| 59 | +2. **Title & Description** (main content area) |
| 60 | +3. **League Details Section** (new addition): |
| 61 | + - 📅 **Starting Date** (highlighted in league color) |
| 62 | + - 👥 **Facilitated By** (organization name) |
| 63 | +4. **Call-to-Action Button** |
| 64 | + |
| 65 | +### Responsive Design |
| 66 | +- **Mobile:** Compact layout with smaller text and icons |
| 67 | +- **Tablet/Desktop:** Full-size layout with enhanced spacing |
| 68 | +- **Visual Icons:** Calendar and people emojis for better UX |
| 69 | + |
| 70 | +### Styling Enhancements |
| 71 | +- Subtle border separator for league details |
| 72 | +- Color-coded starting dates matching league themes |
| 73 | +- Consistent typography hierarchy |
| 74 | +- Touch-friendly sizing for mobile devices |
| 75 | + |
| 76 | +## Usage Example |
| 77 | + |
| 78 | +The carousel automatically displays all league information: |
| 79 | +```jsx |
| 80 | +<LeaguesCarousel /> |
| 81 | +``` |
| 82 | + |
| 83 | +No additional props needed - all data is pulled from `leaguesData.js`. |
| 84 | + |
| 85 | +## Benefits |
| 86 | +- **Clear Schedule Visibility** - Users can see when leagues start |
| 87 | +- **Organization Recognition** - Credits facilitating societies |
| 88 | +- **Better Decision Making** - More information helps users choose |
| 89 | +- **Professional Presentation** - Enhanced visual hierarchy |
0 commit comments