Components / AI Dashboards
AI Service Status Badge
An AI service status indicator showing operational health with animated pulse dots and uptime percentages.
Components / AI Dashboards
An AI service status indicator showing operational health with animated pulse dots and uptime percentages.
"use client";
import React from "react";
// Service Status Monitor
export default function AIServiceStatus() {
return (
<div className="rounded-xl border border-zinc-200 dark:border-zinc-800 bg-white dark:bg-zinc-950 p-6">
<h3 className="text-sm font-semibold text-zinc-900 dark:text-zinc-100 mb-4">Service Status Monitor</h3>
<p className="text-sm text-zinc-500">This is a preview of the AIServiceStatus component. Copy the code to customize.</p>
</div>
);
}react npm install react