From 7b70ce635bd5dffd48deb53845a1231fc49266ad Mon Sep 17 00:00:00 2001 From: MBO-Tech-IT Date: Thu, 2 Apr 2026 01:28:54 +0200 Subject: [PATCH] feat: add WLAN and WebApps service cards with scroll-reveal --- components/Services.tsx | 63 +++++++++++++++++++++++++++++------------ 1 file changed, 45 insertions(+), 18 deletions(-) diff --git a/components/Services.tsx b/components/Services.tsx index 0358073..52e17a5 100644 --- a/components/Services.tsx +++ b/components/Services.tsx @@ -1,3 +1,5 @@ +import ScrollReveal from "@/components/ScrollReveal"; + const services = [ { icon: ( @@ -71,6 +73,30 @@ const services = [ features: ["Cluster-Setup", "Helm Charts", "Auto-Scaling", "Monitoring & Logging"], accent: "blue", }, + { + icon: ( + + + + ), + title: "WLAN & Netzwerk", + description: + "Professionelle WLAN-Planung, Installation und Troubleshooting für Privat- und Gewerbekunden. Mesh-Netzwerke, Access Points und hartnäckige Netzwerkprobleme — auch in schwierigen Gebäuden.", + features: ["WLAN-Planung & Installation", "Mesh-Netzwerke", "Netzwerk-Troubleshooting", "Privat- & Gewerbekunden"], + accent: "orange", + }, + { + icon: ( + + + + ), + title: "Individuelle Webanwendungen", + description: + "Maßgeschneiderte Web-Apps für spezielle Geschäftsanforderungen. Von Kundenportalen über interne Tools bis zu Buchungssystemen — entwickelt auf Ihre Prozesse zugeschnitten.", + features: ["Maßgeschneiderte Entwicklung", "Kundenportale & Tools", "API-Integrationen", "Moderner Tech-Stack"], + accent: "blue", + }, ]; const colorMap = { @@ -112,27 +138,28 @@ export default function Services() { {/* Services grid */}
- {services.map((service) => { + {services.map((service, index) => { const c = colorMap[service.accent as keyof typeof colorMap]; return ( -
-
- {service.icon} + +
+
+ {service.icon} +
+

{service.title}

+

{service.description}

+
    + {service.features.map((feature) => ( +
  • + + {feature} +
  • + ))} +
-

{service.title}

-

{service.description}

-
    - {service.features.map((feature) => ( -
  • - - {feature} -
  • - ))} -
-
+ ); })}