import React from 'react'; import { Button } from '@/components/ui/index'; import { RefreshCw } from 'lucide-react'; import { BackupJobList } from '@/components/Proxmox'; export function ProxmoxBackupPage() { const jobs = [ { id: '1', name: 'Daily VM Backup', node: 'pve1', schedule: '0 2 * * *', status: 'idle' as const, enabled: true }, { id: '2', name: 'Weekly PBS Backup', node: 'pbs1', schedule: '0 3 * * 0', status: 'success' as const, lastRun: '2024-01-01', enabled: true }, ]; return (

Backup Jobs

Manage Proxmox Backup Server jobs

{}} />
); }