import { motion, useInView } from "framer-motion"; import { Brain, Cloud, Globe, Smartphone } from "lucide-react"; import { useRef } from "react"; import PremiumBadge from "./shared/PremiumBadge"; const services = [ { icon: Globe, title: "Web Development", description: "Custom web applications built with cutting-edge technologies. From stunning landing pages to complex enterprise solutions.", color: "primary", }, { icon: Smartphone, title: "Mobile App Development", description: "Native and cross-platform mobile apps that deliver exceptional user experiences on iOS and Android.", color: "primary", }, { icon: Brain, title: "AI Solutions", description: "Intelligent automation and machine learning solutions that transform data into actionable insights.", color: "primary", }, { icon: Cloud, title: "Cloud Solutions", description: "Scalable cloud infrastructure and DevOps practices that ensure your applications run smoothly at any scale.", color: "primary", }, ]; export default function ServicesSection() { const ref = useRef(null); const isInView = useInView(ref, { once: true, margin: "-100px" }); return (

What We Do

We deliver comprehensive technology solutions that empower businesses to thrive in the digital age.

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

{service.title}

{service.description}

); })}
); }