From 4755cd3fd6a4b51325cd11781c92172896d5ca1f Mon Sep 17 00:00:00 2001 From: TheMaddax Date: Tue, 20 Jan 2026 11:06:37 -0700 Subject: [PATCH] Consolidate services into single DeafGain Consultants offering with clear, accessible language --- src/pages/Services.tsx | 31 ++++++++----------------------- 1 file changed, 8 insertions(+), 23 deletions(-) diff --git a/src/pages/Services.tsx b/src/pages/Services.tsx index 0779dcc..f46ec95 100644 --- a/src/pages/Services.tsx +++ b/src/pages/Services.tsx @@ -1,7 +1,7 @@ import { motion, AnimatePresence } from 'framer-motion' import { ComposableMap, Geographies, Geography, Marker } from 'react-simple-maps' import { useState, useEffect, useRef } from 'react' -import { FaGlobe, FaUsers, FaChalkboardTeacher, FaTimes, FaMapMarkerAlt, FaClock } from 'react-icons/fa' +import { FaUsers, FaTimes, FaMapMarkerAlt, FaClock } from 'react-icons/fa' const geoUrl = "https://cdn.jsdelivr.net/npm/us-atlas@3/states-10m.json" @@ -239,25 +239,10 @@ const relationshipPoints: RelationshipPoint[] = [ ] const services = [ - { - icon: , - title: "Universal Website Design", - description: "Visually appealing and accessible websites adhering to universal design principles." - }, { icon: , - title: "Board Communication", - description: "Comprehensive protocol and tools for effective board communication." - }, - { - icon: , - title: "Training & Workshops", - description: "Leadership development and parliamentary procedure training." - }, - { - icon: , - title: "Parliamentarian", - description: "Provide parliamentarian services for organizational meetings ranging from board meetings to conventions." + title: "DeafGain Consultants", + description: "Contact us to learn how we can make your organization GREAT. We offer a variety of services customized to fit your needs." } ] @@ -291,18 +276,18 @@ const Services = () => {

Our Services

-
+
{services.map((service, index) => ( -
{service.icon}
-

{service.title}

-

{service.description}

+
{service.icon}
+

{service.title}

+

{service.description}

))}