posted an update

sinergIAndina Project Update

July 2025

New Features & Improvements

  • Real-Time Interactive Maps:
    Users can now see live updates of emergencies, available resources, and evacuation routes directly on the map.

  • AI Conversational Assistant (sinergIA):
    A multilingual AI chatbot is now integrated to guide users through emergency situations and answer questions 24/7.

  • Accessibility Widget:
    Added a floating accessibility widget with over 15 options, including screen reader support, high-contrast mode, and dynamic font sizing.

  • Gamified Volunteer Network:
    Volunteers can now earn badges and certifications for their contributions, with smart matching for urgent needs.

  • Multilingual Support:
    The platform is now available in Spanish, English, and Portuguese, with more languages coming soon.

Screenshots

sinergIAndina Dashboard Live Map View

Code Snippet

// Example: Real-time update subscription with Supabase
const { data: emergencies, error } = await supabase
  .from('emergencies')
  .on('INSERT', payload => {
    updateMap(payload.new);
  })
  .subscribe();

Log in or sign up for Devpost to join the conversation.