"use client"; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; import { HardDrive, GitMerge, Database, ArrowRight, Wrench, HelpCircle, Download, LucideIcon } from "lucide-react"; import { Button } from "@/components/ui/button"; import Link from "next/link"; const ServiceCard = ({ icon: Icon, title, description, features, href, }: { icon: LucideIcon; title: string; description: string; features: string[]; href: string; }) => { return (
{title} {description}
); }; const ServicesSection = () => { const services = [ { icon: HardDrive, title: "Hardware Solutions", description: "Ready-to-use hardware with preset software", href: "/services/hardware-solutions", features: [ "Preconfigured systems tailored to your needs", "Full freedom and ownership", "No vendor lock-in or hidden costs", "Enterprise-grade hardware with warranty" ] }, { icon: GitMerge, title: "FOSS Support", description: "Paid support for open source software", href: "/services/foss-support", features: [ "Professional support for free and open-source software", "Customized development for your specific needs", "Integration with existing systems", "Regular maintenance and updates" ] }, { icon: Database, title: "Data Services", description: "Comprehensive data management solutions", href: "/services/data-services", features: [ "Secure data archival and backup solutions", "Data migration between platforms", "Recovery of lost or corrupted data", "Long-term storage and retrieval systems" ] } ]; return (
{/* Background Pattern */}
Our Services

Comprehensive Technology Solutions

We offer a range of services designed to keep your data secure, accessible, and resilient against all types of failures and disruptions.

{services.map((service, index) => ( ))}
{/* Extra Features */}

Custom Development

Tailored software solutions built to your exact specifications and requirements.

24/7 Support

Round-the-clock technical assistance from our team of experienced professionals.

Seamless Integration

Effortless integration with your existing infrastructure and workflows.

); }; export default ServicesSection;