@@ -15,42 +15,50 @@ const FeaturesSection: React.FC = () => {
1515 {
1616 icon : Monitor ,
1717 title : 'Unified Monitoring' ,
18- description : 'Monitor your entire infrastructure from a single dashboard with real-time metrics and health status.'
18+ description : 'Monitor your entire infrastructure from a single dashboard with real-time metrics and health status.' ,
19+ link : 'https://opsimate.vercel.app/docs/core-features' ,
1920 } ,
2021 {
2122 icon : Server ,
2223 title : 'Infrastructure Management' ,
23- description : 'Manage VMs and Kubernetes clusters seamlessly via SSH without agent installation.'
24+ description : 'Manage VMs and Kubernetes clusters seamlessly via SSH without agent installation.' ,
25+ link : 'https://opsimate.vercel.app/docs/providers-services/overview' ,
2426 } ,
2527 {
2628 icon : Activity ,
2729 title : 'Real-time Metrics' ,
28- description : 'Track system performance with instant visibility into CPU, memory, disk, and network usage.'
30+ description : 'Track system performance with instant visibility into CPU, memory, disk, and network usage.' ,
31+ link : 'https://opsimate.vercel.app/docs/dashboards/overview' ,
2932 } ,
3033 {
3134 icon : Bell ,
3235 title : 'Smart Alerts' ,
33- description : 'Get intelligent notifications before issues impact users with custom thresholds.'
36+ description : 'Get intelligent notifications before issues impact users with custom thresholds.' ,
37+ link : 'https://opsimate.vercel.app/docs/alerts/adding-alerts' ,
3438 } ,
3539 {
3640 icon : Database ,
3741 title : 'Log Aggregation' ,
38- description : 'Centralize logs from all services with powerful search and pattern analysis.'
42+ description : 'Centralize logs from all services with powerful search and pattern analysis.' ,
43+ link : 'https://opsimate.vercel.app/docs/integrations/overview' ,
3944 } ,
4045 {
4146 icon : GitBranch ,
4247 title : 'Service Discovery' ,
43- description : 'Auto-discover systemd services and containers without manual configuration.'
48+ description : 'Auto-discover systemd services and containers without manual configuration.' ,
49+ link : 'https://opsimate.vercel.app/docs/providers-services/services/add-services' ,
4450 } ,
4551 {
4652 icon : Settings ,
4753 title : 'Automated Actions' ,
48- description : 'Create automated responses with workflows that restart services and scale resources.'
54+ description : 'Create automated responses with workflows that restart services and scale resources.' ,
55+ link : 'https://opsimate.vercel.app/docs/dashboards/service-menu' ,
4956 } ,
5057 {
5158 icon : GitBranch ,
5259 title : 'Open Source' ,
53- description : 'Fully open source with transparent development. Contribute and customize freely.'
60+ description : 'Fully open source with transparent development. Contribute and customize freely.' ,
61+ link : 'https://opsimate.vercel.app/docs/development' ,
5462 }
5563 ] ;
5664
@@ -77,11 +85,10 @@ const FeaturesSection: React.FC = () => {
7785 icon = { feature . icon }
7886 title = { feature . title }
7987 description = { feature . description }
88+ link = { feature . link }
8089 />
8190 ) ) }
8291 </ div >
83-
84-
8592 </ div >
8693 </ section >
8794 ) ;
0 commit comments