import React from 'react'; import { ServiceItem } from '../types'; const SERVICES: ServiceItem[] = [ { id: 'dcs', title: 'Distributed Control (DCS)', description: 'Advanced, redundant control architectures designed for continuous process industries including power generation and chemicals.', icon: 'fa-network-wired', image: 'https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&q=80&w=800' }, { id: 'scada', title: 'SCADA Solutions', description: 'High-performance monitoring platforms with cutting-edge HMI, real-time analytics, and secure remote access protocols.', icon: 'fa-chart-line', image: 'https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&q=80&w=800' }, { id: 'database', title: 'Industrial Historians', description: 'Mission-critical database servers and SQL infrastructure optimized for heavy manufacturing data and regulatory compliance.', icon: 'fa-database', image: 'https://images.unsplash.com/photo-1558494949-ef010cbdcc48?auto=format&fit=crop&q=80&w=800' }, { id: 'instruments', title: 'Control Instruments', description: 'Precision field instruments including flow, pressure, and temperature transmitters and smart control valves.', icon: 'fa-gauge-high', image: 'https://images.unsplash.com/photo-1531482615713-2afd69097998?auto=format&fit=crop&q=80&w=800' } ]; const Services: React.FC = () => { return (

Capabilities

World-Class Automation

We bridge the gap between heavy physical operations and digital intelligence through robust networking and control systems.

{SERVICES.map((service) => (
{service.title}

{service.title}

{service.description}

Technical Specs
))}
); }; export default Services;