import Image from "next/image"; import Link from "next/link"; import { FadeIn, SlideInLeft, SlideInRight, ScaleIn, StaggerContainer, StaggerItem, HoverScale, PageTransition } from "@/components/Motion"; export default function Services() { // Service categories data from info.txt const serviceCategories = [ { title: "Web Hosting & CMS Solutions", description: "Professional hosting and content management system implementations", services: [ "WordPress - Industry-leading CMS for blogs and business websites", "Joomla - Flexible CMS for complex content structures", "Drupal - Enterprise-grade CMS for large organizations", "Moodle - Specialized learning management system", "Custom hosting solutions with expert support" ], technologies: "WordPress • Joomla • Drupal • Moodle", image: "/images/webhosting2.jpg" }, { title: "Custom Web Development", description: "Modern web applications built with cutting-edge frameworks", services: [ "Laravel - PHP framework for robust web applications", ".NET - Enterprise solutions with Microsoft technology", "Node.js/Express - Fast and scalable JavaScript backend", "Next.js & React - Modern frontend development", "Django & Flask - Python-based web solutions" ], technologies: "Laravel • .NET • Node.js • Next.js • Django • Flask", image: "/images/customsystems.jpg" }, { title: "Mobile App Development", description: "Cross-platform and native mobile applications", services: [ "React Native - Cross-platform apps with native performance", "Flutter - Beautiful and fast mobile applications", "Native iOS and Android development", "Progressive Web Apps (PWA)", "Mobile app maintenance and updates" ], technologies: "React Native • Flutter • iOS • Android • PWA", image: "/images/mobiledev.jpg" }, { title: "Managed VPS Services", description: "Professional server management and hosting solutions", services: [ "Linux VPS - Ubuntu, CentOS, and Debian servers", "Windows Server VPS - Professional Windows hosting", "Forex VPS - Low-latency trading solutions", "Cloud VPS - Scalable cloud hosting", "Managed security and backups" ], technologies: "Linux • Windows Server • Cloud • DevOps", image: "/images/forex1.jpg" } ]; return (
{/* Hero Section */}
IT Services Background

Our Services

Comprehensive IT solutions tailored to your business needs

{/* Services Categories */}

What We Offer

Explore our range of professional IT services

{serviceCategories.map((category, index) => (
{category.title}

{category.title}

{category.description}

Services Include:

    {category.services.map((service, i) => (
  • {service}
  • ))}

Technologies:

{category.technologies}

))}
{/* Call to Action */}

Ready to Get Started?

Contact us today to discuss your project requirements

Contact Us
); }