From efb26e7791bead37f713fe508abec3be7037761c Mon Sep 17 00:00:00 2001 From: TheMaddax Date: Wed, 17 Sep 2025 08:59:13 -0600 Subject: [PATCH] Fix missing ServiceGrid content on homepage - Complete ServiceGrid component with proper service cards - Add interactive hover effects and styling - Fix services section that was showing only heading --- src/components/home/ServiceGrid.tsx | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/src/components/home/ServiceGrid.tsx b/src/components/home/ServiceGrid.tsx index 79029ec..db71814 100644 --- a/src/components/home/ServiceGrid.tsx +++ b/src/components/home/ServiceGrid.tsx @@ -59,12 +59,26 @@ export default function ServiceGrid() {
{services.map((service) => ( -
- {/* Rest of your card content */} -
+
+
+ {service.icon} +
+

+ {service.title} +

+

+ {service.description} +

+
+ Learn More → +
+
+ ))}