"use client"; import { useState } from "react"; import Link from "next/link"; import ConsenHead from "@/src/ConsenHead"; import ContactPopup from "./ContactPopup"; const WeServe = () => { const [showPopup, setShowPopup] = useState(false); // Using specific colors and icons to match a premium aesthetic. // Fallback images are retained, but we prioritise a clean icon look if possible. const features = [ { img: "/assets/images/Mobile-app-development-service/retail.webp", text: "E-commerce & Retail", bgColor: "#E3F2FD", // Light Blue iconColor: "#2196F3", delay: ".1s", icon: "fas fa-shopping-cart" }, { img: "/assets/images/Mobile-app-development-service/fitness.webp", text: "Healthcare & Fitness", bgColor: "#FBE9E7", // Light Orange iconColor: "#FF5722", delay: ".2s", icon: "fas fa-heartbeat" }, { img: "/assets/images/Mobile-app-development-service/education.webp", text: "Education & E-learning", bgColor: "#F3E5F5", // Light Purple iconColor: "#9C27B0", delay: ".3s", icon: "fas fa-graduation-cap" }, { img: "/assets/images/Mobile-app-development-service/finance.webp", text: "Finance & Banking", bgColor: "#E8F5E9", // Light Green iconColor: "#4CAF50", delay: ".4s", icon: "fas fa-university" }, // Second Row { img: "/assets/images/Mobile-app-development-service/food.webp", text: "Food Delivery & Restaurants", bgColor: "#FFF3E0", // Light Amber iconColor: "#FF9800", delay: ".15s", icon: "fas fa-utensils" }, { img: "/assets/images/Mobile-app-development-service/transport.webp", text: "Transport & Logistics", bgColor: "#E0F2F1", // Light Teal iconColor: "#009688", delay: ".25s", icon: "fas fa-truck" }, { img: "/assets/images/Mobile-app-development-service/entertainment.webp", text: "Entertainment & Media", bgColor: "#FFEBEE", // Light Red iconColor: "#E91E63", delay: ".35s", icon: "fas fa-music" }, ]; const firstRow = features.slice(0, 4); const secondRow = features.slice(4, 7); return ( <>
We build scalable solutions tailored to your specific business needs.