This project provides a web application to analyze NBA offensive rebounds totals across different seasons, showing year-over-year trends and statistics.
├── backend/
│ ├── index.ts # Main Hono server
│ └── nba-api.ts # NBA data fetching logic
├── frontend/
│ ├── index.html # Main HTML template
│ ├── index.tsx # React frontend
│ └── style.css # Styling
└── shared/
└── types.ts # Shared TypeScript types
The application fetches NBA team statistics and aggregates offensive rebounds by season to show trends over time.
Uses the NBA Stats API to fetch team statistics for offensive rebounds analysis.