end cleaning

This commit is contained in:
LathanDevers
2026-08-02 22:21:57 +02:00
parent 80dc61b938
commit 25ddc59f98
5 changed files with 34 additions and 41 deletions
+13 -16
View File
@@ -1,4 +1,6 @@
import { Card, CardContent } from '@/components/ui/Card';
import { Card, CardContent, CardHeader } from '@/components/ui/Card';
import { Check } from 'lucide-react';
import Badge from '@ui/Badge';
interface BackupWidgetProps {
onClick?: () => void;
@@ -6,27 +8,22 @@ interface BackupWidgetProps {
export default function BackupWidget({ onClick }: BackupWidgetProps) {
return (
<Card
<Card
onClick={onClick}
className="cursor-pointer hover:border-blue-300 hover:shadow-md transition-all group"
className="cursor-pointer transition-all duration-300 ease-in-out"
>
<CardHeader>
<h2 className="text-lg font-semibold">Sauvegardes</h2>
<Badge className="max-w-fit min-w-fit" name="PRA Immuable">
</Badge>
</CardHeader>
<CardContent className="p-6">
<div className="flex items-center justify-between mb-4">
<h2 className="text-lg font-semibold text-slate-900 group-hover:text-blue-900 transition-colors">Sauvegardes</h2>
<span className="bg-slate-100 text-slate-600 text-xs px-2 py-1 rounded font-medium border border-slate-200">
PRA Immuable
</span>
</div>
<div className="bg-slate-50 rounded-lg p-4 border border-slate-100 mb-4 group-hover:bg-blue-50/50 transition-colors">
<Card variant='digged' className="bg-slate-50 rounded-lg p-4 border border-slate-100 mb-4">
<p className="text-sm text-slate-500 mb-1">Dernier snapshot système</p>
<p className="text-slate-900 font-medium">Aujourd'hui à 03:00 AM</p>
</div>
</Card>
<div className="flex items-center text-emerald-600 text-sm font-medium">
<svg className="w-5 h-5 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M5 13l4 4L19 7" />
</svg>
<Check></Check>
Intégrité validée avec succès
</div>
</CardContent>