"use client"; import { useState } from "react"; import Link from "next/link"; import ContactPopup from "./ContactPopup"; import ConsenHead from "@/src/ConsenHead"; const WhoCanBenifit = () => { const [showPopup, setShowPopup] = useState(false); const benefits = [ { icon: "fas fa-rocket", title: "Startups", desc: "Turn your vision into a scalable mobile product." }, { icon: "fas fa-chart-line", title: "Enterprises", desc: "Streamline operations with high-performance apps." }, { icon: "fas fa-lightbulb", title: "Entrepreneurs", desc: "Bring your innovative ideas to the hands of millions." }, { icon: "fas fa-store", title: "Small Businesses", desc: "Engage customers and boost loyalty with direct access." } ]; return ( <>

Is This Service Right for You?

We empower diverse clients to succeed in the mobile-first world.

{benefits.map((item, index) => (

{item.title}

{item.desc}

))}
Benefits of App Development
setShowPopup(false)} /> ); }; export default WhoCanBenifit;