'use client'; import React, {useState} from 'react'; import {motion, AnimatePresence} from 'framer-motion'; import {FiZap, FiMonitor, FiServer, FiTool} from 'react-icons/fi'; import Development from "@/components/Services/Section/overview/Development"; import Consulting from "@/components/Services/Section/overview/Consulting"; import ManagedServices from "@/components/Services/Section/overview/ManagedServices"; import BugFixing from "@/components/Services/Section/overview/BugFixing"; import {useThemeColors} from "@/utils/useThemeColors"; const tabs = [ {key: 'entwicklung', label: 'Entwicklung', icon: }, {key: 'beratung', label: 'Beratung', icon: }, {key: 'services', label: 'Managed Services', icon: }, {key: 'support', label: 'Fehlerbehebung', icon: }, ]; const tabContent: Record = { entwicklung: , beratung: , services: , support: , }; const OverviewTabs = () => { const [activeTab, setActiveTab] = useState("entwicklung"); const colors = useThemeColors(); return (

Was wir tun

In diesem Abschnitt geben wir dir einen Überblick über unsere zentralen Leistungen – von der technischen Entwicklung über Beratung bis hin zu Betrieb und Support.

{tabs.map((tab) => ( ))}
{tabContent[activeTab]}
); }; export default OverviewTabs;