"use client"; import React, { useState, useEffect } from "react"; const services = [ { id: 0, title: "Website Development", text: "Custom website development tailored to your business needs.", icon: "/assets/imgs/icon/icon-6.png", link: "/services-digital-solutions/web-development", }, { id: 1, title: "Mobile Application Development", text: "High-performance mobile apps for iOS and Android.", icon: "/assets/imgs/icon/icon-2.png", link: "/services-digital-solutions/mobile-application-development", }, { id: 2, title: "Graphic Designing", text: "Creative graphic design solutions for your brand.", icon: "/assets/imgs/icon/icon-3.png", link: "/services-digital-solutions/graphic-designing-company", }, { id: 3, title: "UI / UX Designing", text: "User-centric design experiences that engage and convert.", icon: "/assets/imgs/icon/icon-4.png", link: "/services-digital-solutions/ui-ux-designing", }, { id: 4, title: "SEO & Content Writing", text: "Optimization and content that drives organic growth.", icon: "/assets/imgs/icon/icon-5.png", link: "/services-digital-solutions/search-engine-optimization-seo-content-writing", }, { id: 5, title: "Digital Marketing", text: "Strategic digital marketing to grow your online presence.", icon: "/assets/imgs/icon/icon-6.png", link: "/services-digital-solutions/digital-marketing-agency-in-canada", }, ]; const MedicalServices = () => { const [activeTab, setActiveTab] = useState(0); const handleTabClick = (e: React.MouseEvent, id: number) => { e.preventDefault(); setActiveTab(id); }; return (
{/* Background Overlay */}
{/* Decorative Elements - 4 Left, 4 Right */}
shape
shape
{/*
shape
*/}
shape
shape
shape
{/*
shape
*/}
shape
WELCOME

Driving Client Success

It is a long established fact that a reader will be distracted the readable content of
a page when looking at layout the point of using lorem the is Ipsum less normal distribution of letters.

{services.map((service, index) => (

{service.title}

{service.text}

))}
); }; export default MedicalServices;