"use client"; import { Slider } from "@/components/ui/Slider"; interface DurationStepProps { duration: number; onChange: (min: number) => void; } export function DurationStep({ duration, onChange }: DurationStepProps) { return (
How long do you want each workout to be? This is the total time including warm-up, working sets, and rest periods.
{/* Big centered display */}