Update overview layout with status and changelog components
cgen-fb38452c4546448f84ee2477da93153f
This commit is contained in:
parent
3d8181f963
commit
7a5ecf22ab
1 changed files with 12 additions and 1 deletions
|
|
@ -734,7 +734,13 @@ export default function Admin() {
|
|||
))}
|
||||
</div>
|
||||
|
||||
<div className="grid gap-6 lg:grid-cols-2">
|
||||
<div className="grid gap-6 xl:grid-cols-2">
|
||||
<AdminStatusOverview
|
||||
services={statusSnapshot}
|
||||
overall={overallStatus}
|
||||
onViewStatus={() => navigate("/status")}
|
||||
/>
|
||||
|
||||
<Card className="bg-card/60 border-border/40 backdrop-blur">
|
||||
<CardHeader>
|
||||
<div className="flex items-center gap-2">
|
||||
|
|
@ -769,6 +775,11 @@ export default function Admin() {
|
|||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<AdminChangelogDigest
|
||||
entries={latestChangelog}
|
||||
onViewChangelog={() => navigate("/changelog")}
|
||||
/>
|
||||
|
||||
<Card className="bg-card/60 border-border/40 backdrop-blur">
|
||||
<CardHeader>
|
||||
<div className="flex items-center gap-2">
|
||||
|
|
|
|||
Loading…
Reference in a new issue