Team Timezones

Time:
12:00 AM
Drag to see times at different hours • 15-min increments • "Now" rounds to nearest quarter-hour
Select a team to view timezones

📝 How to Add or Edit Teams

🚀 Quick Start

Want to add your team or update existing data? It's super easy!

📁 Add a New Team

  1. Create a new JSON file in the teams/ folder
  2. Name it team-yourteamname.json
  3. Use this format:
{ "teamName": "Your Team Name", "members": [ { "name": "Alice", "timezone": "America/Los_Angeles", "location": "San Francisco, CA" }, { "name": "Bob", "timezone": "Europe/London", "location": "London, UK" }, { "name": "Charlie", "timezone": "Asia/Kolkata" } ] }

🌍 Common Timezones

US West: America/Los_Angeles
US East: America/New_York
UK: Europe/London
India: Asia/Kolkata
Japan: Asia/Tokyo
Australia: Australia/Sydney
Canada: America/Toronto
Ukraine: Europe/Kyiv
Colombia: America/Bogota
Costa Rica: America/Costa_Rica
Brazil: America/Sao_Paulo
Argentina: America/Buenos_Aires

💡 Find more timezones at Wikipedia TZ Database

🔧 How to Contribute

Option 1: GitHub (Recommended)

Fork the repository, add your team file, and create a pull request

🔗 Open GitHub Repository
Option 2: Send to Admin

Create your team JSON and send it to the repository maintainer

✨ Pro Tips

  • Team names are automatically formatted (team-frontend → FRONTEND)
  • Members are sorted alphabetically automatically
  • The app will auto-discover your new team file
  • Use standard timezone identifiers for best results

📍 Location Field (Optional)

  • timezone: Required - Used for time calculations (e.g., "Asia/Kolkata")
  • location: Optional - Actual city/location to display (e.g., "Pune, India")
  • If location is not provided, the timezone will be displayed
  • Backward compatible with old format using "location" field for timezone

📋 JSON Structure

  • teamName: Display name for your team (shown in dropdown)
  • members: Array of team member objects
  • timezone: Required - Used for time calculations (e.g., "Asia/Kolkata")
  • location: Optional - Actual city/location to display (e.g., "Pune, India")
  • If location is not provided, the timezone will be displayed
  • Backward compatible with old array format