Add two locations

This commit is contained in:
TheMaddax 2025-08-13 11:57:53 -05:00
parent 86096d99e3
commit 67c775a66f
3 changed files with 42 additions and 2 deletions

View file

@ -239,10 +239,27 @@ All requested features are complete and secure:
- `docker-compose.yml` - Production orchestration with forced rebuild flags
- `default.conf` - Nginx proxy configuration
- `src/pages/Resources.tsx` - Video library interface
- `src/pages/Services.tsx` - Interactive map with 16 locations
- `src/pages/Services.tsx` - Interactive map with 18 locations
- `src/api/subscribe.ts` - Email subscription API
- `server.ts` - Main API server
- `.env` - Environment variables (Gmail credentials)
## Recently Completed Work
**Date: 8/13/2025**
### ✅ Interactive Map Updates - COMPLETED
Successfully added two new 2025 conference locations to the Services page interactive map:
**New Locations Added:**
1. **New Orleans, LA** - LAD (Louisiana Association of the Deaf) - Board Training (September 26-28, 2025)
2. **Austin, TX** - NLTC (National Leadership Training Conference) - NAD conference (October 29 - November 1, 2025)
**Map Status:** Expanded from 16 to 18 total locations nationwide
**Files Updated:**
- `src/pages/Services.tsx` - Added 2 new RelationshipPoint entries with precise coordinates
- All new 2025 events display as green markers (upcoming events)
- Maintained full interactive functionality with popup details
## Status Summary
🟢 **ALL SYSTEMS OPERATIONAL** - Interactive map successfully expanded with 2025 conference schedule and Montana location corrected to Missoula. Ready for production use and content addition.
🟢 **ALL SYSTEMS OPERATIONAL** - Interactive map successfully expanded with additional 2025 conference locations in New Orleans and Austin. Ready for production use and content addition.

View file

@ -17,6 +17,7 @@
- SnowPeaks animation
- Contact form with email integration
- Toast notification system
- Interactive map with 18 conference locations (latest additions: New Orleans, LA and Austin, TX)
### Content
✅ Media Assets

View file

@ -213,6 +213,28 @@ const relationshipPoints: RelationshipPoint[] = [
startDate: "August 13, 2025",
endDate: "August 16, 2025"
}]
},
{
coordinates: [-90.0715, 29.9511] as Coordinates,
city: "New Orleans",
state: "Louisiana",
events: [{
name: "LAD",
description: "Louisiana Association of the Deaf - Board Training",
startDate: "September 26, 2025",
endDate: "September 28, 2025"
}]
},
{
coordinates: [-97.7431, 30.2672] as Coordinates,
city: "Austin",
state: "Texas",
events: [{
name: "NLTC",
description: "National Leadership Training Conference - NAD conference",
startDate: "October 29, 2025",
endDate: "November 1, 2025"
}]
}
]