interface TimerProps { seconds?: number } export function Timer({ seconds = 0 }: TimerProps) { const mins = Math.floor(seconds / 60) const secs = seconds % 60 return (