Remove ADA-compliant transcripts service.
This commit is contained in:
parent
67c775a66f
commit
5d49c9ec72
2 changed files with 21 additions and 7 deletions
|
|
@ -261,5 +261,24 @@ Successfully added two new 2025 conference locations to the Services page intera
|
||||||
- All new 2025 events display as green markers (upcoming events)
|
- All new 2025 events display as green markers (upcoming events)
|
||||||
- Maintained full interactive functionality with popup details
|
- Maintained full interactive functionality with popup details
|
||||||
|
|
||||||
|
## Recently Completed Work
|
||||||
|
**Date: 8/28/2025**
|
||||||
|
|
||||||
|
### ✅ Services Page Update - COMPLETED
|
||||||
|
Successfully removed ADA-Compliant Transcripts service from the Services page per user request:
|
||||||
|
|
||||||
|
**Changes Made:**
|
||||||
|
- Removed "ADA-Compliant Transcripts" service entry from services array
|
||||||
|
- Cleaned up unused `FaFileAlt` import
|
||||||
|
- Services page now displays 3 services instead of 4:
|
||||||
|
1. Universal Website Design
|
||||||
|
2. Board Communication
|
||||||
|
3. Training & Workshops
|
||||||
|
|
||||||
|
**Reason for Change:** ADA is no longer offering transcribing services
|
||||||
|
|
||||||
|
**Files Updated:**
|
||||||
|
- `src/pages/Services.tsx` - Removed ADA transcribing service and cleaned imports
|
||||||
|
|
||||||
## Status Summary
|
## Status Summary
|
||||||
🟢 **ALL SYSTEMS OPERATIONAL** - Interactive map successfully expanded with additional 2025 conference locations in New Orleans and Austin. Ready for production use and content addition.
|
🟢 **ALL SYSTEMS OPERATIONAL** - Services page updated to reflect current service offerings. Interactive map successfully expanded with additional 2025 conference locations in New Orleans and Austin. Ready for production use and content addition.
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
import { motion, AnimatePresence } from 'framer-motion'
|
import { motion, AnimatePresence } from 'framer-motion'
|
||||||
import { ComposableMap, Geographies, Geography, Marker } from 'react-simple-maps'
|
import { ComposableMap, Geographies, Geography, Marker } from 'react-simple-maps'
|
||||||
import { useState, useEffect, useRef } from 'react'
|
import { useState, useEffect, useRef } from 'react'
|
||||||
import { FaFileAlt, FaGlobe, FaUsers, FaChalkboardTeacher, FaTimes, FaMapMarkerAlt, FaClock } from 'react-icons/fa'
|
import { FaGlobe, FaUsers, FaChalkboardTeacher, FaTimes, FaMapMarkerAlt, FaClock } from 'react-icons/fa'
|
||||||
|
|
||||||
const geoUrl = "https://cdn.jsdelivr.net/npm/us-atlas@3/states-10m.json"
|
const geoUrl = "https://cdn.jsdelivr.net/npm/us-atlas@3/states-10m.json"
|
||||||
|
|
||||||
|
|
@ -239,11 +239,6 @@ const relationshipPoints: RelationshipPoint[] = [
|
||||||
]
|
]
|
||||||
|
|
||||||
const services = [
|
const services = [
|
||||||
{
|
|
||||||
icon: <FaFileAlt className="text-4xl" />,
|
|
||||||
title: "ADA-Compliant Transcripts",
|
|
||||||
description: "High-quality, accurate transcripts with speaker identification and context differentiation."
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: <FaGlobe className="text-4xl" />,
|
icon: <FaGlobe className="text-4xl" />,
|
||||||
title: "Universal Website Design",
|
title: "Universal Website Design",
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue