'use client' import { motion } from 'framer-motion' interface ProgressBarProps { current: number total: number } export default function ProgressBar({ current, total }: ProgressBarProps) { const progress = ((current + 1) / total) * 100 return (
) }