- improved Dashboard ui

This commit is contained in:
2025-11-24 16:17:27 +00:00
parent c9dde6b992
commit 31b6bd45f5
13 changed files with 79 additions and 10 deletions

View File

@@ -1,10 +1,12 @@
import Card from "../../../ui/Card";
import CardHeader from "../../../ui/CardHeader";
import SystemHealth from "./SystemHealth";
const SystemOverview = () => {
return (
<Card className="p-4">
<CardHeader title="System Overview" />
<CardHeader title="System Health" />
<SystemHealth />
</Card>
);
};