import { Card, CardContent, CardHeader } from "@/components/ui/card" import { Code, Palette, Smartphone, LineChart, ArrowUpRight } from "lucide-react" import Link from "next/link" const services = [ { title: "Web Development", description: "We build fast, scalable web applications using Next.js, React, and Node.js. From marketing sites to complex SaaS platforms.", icon: Code, gradient: "from-blue-500 to-cyan-400", deliverables: ["Custom Website", "Web Application", "API Development", "Database Design"], }, { title: "Mobile App Development", description: "Cross-platform mobile apps for iOS and Android built with React Native and Flutter. Native performance, shared codebase.", icon: Smartphone, gradient: "from-violet-500 to-purple-400", deliverables: ["iOS App", "Android App", "Cross-Platform", "App Store Deployment"], }, { title: "UI/UX Design", description: "User-centric design that converts. We craft interfaces that are both beautiful and intuitive, backed by research and usability testing.", icon: Palette, gradient: "from-pink-500 to-rose-400", deliverables: ["Wireframes", "Prototypes", "Design System", "Usability Testing"], }, { title: "SEO Optimization", description: "Data-driven strategies to boost your search rankings, drive organic traffic, and increase visibility across all major search engines.", icon: LineChart, gradient: "from-amber-500 to-orange-400", deliverables: ["Technical Audit", "Keyword Research", "On-Page SEO", "Analytics Setup"], }, ] export function ServiceDescriptions() { return (

What We Do

Our Services

End-to-end digital solutions tailored to your business goals.

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

{service.title}

{service.description}

Key Deliverables

{service.deliverables.map((d) => ( {d} ))}
))}
) }