diff --git a/cline_docs/activeContext.md b/cline_docs/activeContext.md index 3aa316f..2bd4e11 100644 --- a/cline_docs/activeContext.md +++ b/cline_docs/activeContext.md @@ -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. diff --git a/cline_docs/progress.md b/cline_docs/progress.md index 73b254a..53d03d8 100644 --- a/cline_docs/progress.md +++ b/cline_docs/progress.md @@ -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 diff --git a/src/pages/Services.tsx b/src/pages/Services.tsx index 920c32f..2e1fc82 100644 --- a/src/pages/Services.tsx +++ b/src/pages/Services.tsx @@ -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" + }] } ]