import { useState } from "react"; import StatusSection from "./components/status-section"; const page = () => { const [customServices] = useState([ { id: 'api-gateway', name: 'API Gateway', status: 'operational', description: 'Core API routing and management', details: 'All API endpoints are responding within normal parameters' }, { id: 'database', name: 'Database Cluster', status: 'incident', description: 'Primary database infrastructure', details: 'Experiencing elevated response times. Engineering team investigating.', hasDetails: true }, { id: 'cdn', name: 'Content Delivery Network', status: 'operational', description: 'Global content distribution network', details: 'CDN nodes are performing optimally across all regions' } ]); const handleIncidentClick = () => { console.log('Navigating to incident history...'); }; return (
); }; export default page;