import React from "react"; import { motion } from "framer-motion"; interface ProgressBarProps { value: number; total?: number; label?: string; } export function ProgressBar({ value, total = 100, label }: ProgressBarProps) { const pct = Math.max(0, Math.min(100, Math.round((value / total) * 100))); return (