"use client"; import { Container } from "@/components/container"; import { Heading } from "@/components/heading"; import { Subheading } from "@/components/subheading"; import { Card, CardHeader, CardTitle, CardDescription } from "@/components/ui/card"; import { Cpu, FileDigit, ShieldCheck, Globe, Smartphone, Cloud, ReceiptText, PartyPopper } from "lucide-react"; const services = [ { title: "Predator AI Solutions", description: "Powerful AI-driven systems that automate operations, analyze data, and help you make faster, smarter decisions.", icon: , }, { title: "Digital Transformation", description: "We turn paper into secure digital assets. From IDs and certificates to official records, we digitize, manage, and protect your documents.", icon: , }, { title: "Advanced Security Services", description: "End-to-end security solutions including smart CCTV, professional management, trained officers, and dedicated vehicles.", icon: , }, { title: "Web Design", description: "Modern, secure, and high-performance websites that build trust, strengthen your brand, and convert visitors into customers.", icon: , }, { title: "App Development", description: "Custom mobile and web applications designed to simplify workflows, improve control, and enhance user experience.", icon: , }, { title: "Cloud Services", description: "Reliable and secure cloud solutions for data storage, backups, and system management—accessible anytime, anywhere.", icon: , }, { title: "Tax Filing Services", description: "Stress-free tax preparation and filing for individuals and companies, ensuring accuracy, compliance, and peace of mind.", icon: , }, { title: "Event & Party Security", description: "Professional security planning and on-site management for events and private gatherings—safety handled professionally.", icon: , }, ]; export function Services() { return (
Our Services Comprehensive solutions tailored to your business needs.
{services.map((service, index) => (
{service.icon}
{service.title} {service.description}
))}
); }