"use client"; import { ArrowLeft, ArrowRight } from "lucide-react"; import { useI18n } from "locales/client"; import { Button } from "@/components/ui/button"; export function WorkoutBuilderFooter({ currentStep, totalSteps, canContinue, onPrevious, onNext, onStartWorkout, selectedEquipment, selectedMuscles, }: { currentStep: number; totalSteps: number; canContinue: boolean; onPrevious: VoidFunction; onNext: VoidFunction; onStartWorkout?: VoidFunction; selectedEquipment: any[]; selectedMuscles: any[]; }) { const t = useI18n(); const isFirstStep = currentStep === 1; const isFinalStep = currentStep === totalSteps; return (
{/* Mobile layout - vertical stack */}
{/* Center stats on top for mobile */}
{/* Navigation buttons */}
{/* Previous button */} {/* Next/Start Workout button */}
); }