feat: base backups tab

This commit is contained in:
Nicolas Meienberger
2025-09-26 21:14:39 +02:00
parent bc6e6c9700
commit 4fe742e5c8
4 changed files with 612 additions and 7 deletions

View File

@@ -6,7 +6,7 @@ export const StatusDot = ({ status }: { status: VolumeStatus }) => {
const statusMapping = {
mounted: {
color: "bg-green-500",
colorLight: "bg-green-400",
colorLight: "bg-emerald-400",
animated: true,
},
unmounted: {
@@ -16,7 +16,7 @@ export const StatusDot = ({ status }: { status: VolumeStatus }) => {
},
error: {
color: "bg-red-500",
colorLight: "bg-red-400",
colorLight: "bg-amber-700",
animated: true,
},
unknown: {