chore: initial commit for phase05

This commit is contained in:
hibna
2026-02-21 16:59:21 +03:00
parent 218452706c
commit 0941a9ba46
43 changed files with 4431 additions and 17 deletions
+17
View File
@@ -0,0 +1,17 @@
import { useParams } from 'react-router';
import { HardDrive } from 'lucide-react';
import { Card, CardContent } from '@/components/ui/card';
export function BackupsPage() {
const { serverId } = useParams();
return (
<Card>
<CardContent className="flex flex-col items-center justify-center py-12">
<HardDrive className="mb-4 h-12 w-12 text-muted-foreground/50" />
<p className="text-muted-foreground">Backup management coming soon</p>
<p className="mt-1 text-xs text-muted-foreground">Server: {serverId}</p>
</CardContent>
</Card>
);
}