diff --git a/public/assets/about-image.png b/public/assets/about-image.png deleted file mode 100644 index c6e5b0b..0000000 Binary files a/public/assets/about-image.png and /dev/null differ diff --git a/public/assets/about-image.webp b/public/assets/about-image.webp new file mode 100644 index 0000000..e724d2a Binary files /dev/null and b/public/assets/about-image.webp differ diff --git a/public/assets/cabling.png b/public/assets/cabling.png deleted file mode 100644 index 0c11adc..0000000 Binary files a/public/assets/cabling.png and /dev/null differ diff --git a/public/assets/cabling.webp b/public/assets/cabling.webp new file mode 100644 index 0000000..5243ddf Binary files /dev/null and b/public/assets/cabling.webp differ diff --git a/public/assets/hero-tech.png b/public/assets/hero-tech.png deleted file mode 100644 index 65fd32e..0000000 Binary files a/public/assets/hero-tech.png and /dev/null differ diff --git a/public/assets/hero-tech.webp b/public/assets/hero-tech.webp new file mode 100644 index 0000000..b57df57 Binary files /dev/null and b/public/assets/hero-tech.webp differ diff --git a/public/assets/local-networking.png b/public/assets/local-networking.png deleted file mode 100644 index 4da244c..0000000 Binary files a/public/assets/local-networking.png and /dev/null differ diff --git a/public/assets/local-networking.webp b/public/assets/local-networking.webp new file mode 100644 index 0000000..8d2e8d7 Binary files /dev/null and b/public/assets/local-networking.webp differ diff --git a/public/assets/modern-call-center.png b/public/assets/modern-call-center.png deleted file mode 100644 index e6d03dc..0000000 Binary files a/public/assets/modern-call-center.png and /dev/null differ diff --git a/public/assets/modern-call-center.webp b/public/assets/modern-call-center.webp new file mode 100644 index 0000000..b72e96e Binary files /dev/null and b/public/assets/modern-call-center.webp differ diff --git a/src/data/services.js b/src/data/services.js index b8aaf2a..4e1c110 100644 --- a/src/data/services.js +++ b/src/data/services.js @@ -36,7 +36,7 @@ As an 8x8 Certified Partner, we deliver enterprise-grade contact center solution We support Cisco Webex Contact Center, 8x8 Contact Center, and other leading platforms.`, icon: 'users', - image: '/assets/modern-call-center.png', + image: '/assets/modern-call-center.webp', benefits: [ 'Omnichannel customer interactions', 'Real-time analytics and reporting', @@ -99,7 +99,7 @@ We support Cisco Webex Contact Center, 8x8 Contact Center, and other leading pla homeDesc: 'Bad cabling means dropped calls and slow networks. We build it right the first time.', fullDesc: 'Clean structured cabling that gives your business the physical foundation for reliable communication and growth.', icon: 'link', - image: '/assets/cabling.png', + image: '/assets/cabling.webp', benefits: [ 'Cat6/Cat6a and fiber optic installations', 'Data center cabling solutions', @@ -140,7 +140,7 @@ We support Cisco Webex Contact Center, 8x8 Contact Center, and other leading pla homeDesc: 'A network that doesn\'t go down when it matters. Secure, fast, and built for your workload.', fullDesc: 'Switching and routing built for stability, visibility, and secure local network performance.', icon: 'network', - image: '/assets/local-networking.png', + image: '/assets/local-networking.webp', benefits: [ 'Enterprise-grade routing and switching', 'Network security and segmentation', diff --git a/src/pages/About.jsx b/src/pages/About.jsx index c85a7f0..89164b0 100644 --- a/src/pages/About.jsx +++ b/src/pages/About.jsx @@ -48,7 +48,7 @@ const About = () => {
diff --git a/src/pages/Contact.jsx b/src/pages/Contact.jsx
index f9c931c..e15ef93 100644
--- a/src/pages/Contact.jsx
+++ b/src/pages/Contact.jsx
@@ -350,7 +350,17 @@ const Contact = () => {
className="w-full"
disabled={isSubmitting}
>
- {isSubmitting ? 'Submitting...' : 'Request Consultation'}
+ {isSubmitting ? (
+ <>
+
+ Submitting...
+ >
+ ) : (
+ 'Request Consultation'
+ )}
diff --git a/src/pages/Support.jsx b/src/pages/Support.jsx
index 46cda63..65b9213 100644
--- a/src/pages/Support.jsx
+++ b/src/pages/Support.jsx
@@ -357,7 +357,17 @@ const Support = () => {
className="w-full"
disabled={isSubmitting}
>
- {isSubmitting ? 'Submitting...' : 'Submit Request'}
+ {isSubmitting ? (
+ <>
+
+ Submitting...
+ >
+ ) : (
+ 'Submit Request'
+ )}