// // Constants.swift // Workouts // // Created by Claude on 8/8/25. // // Copyright 2025 Rouslan Zenetl. All Rights Reserved. // import Foundation /// Application-wide constants struct Constants { /// Default values for new exercises struct ExerciseDefaults { static let sets = 3 static let reps = 10 static let weight = 40 static let weightReminderTimeIntervalWeeks = 2 } /// UI Constants struct UI { static let defaultSplitColor = "indigo" static let defaultSplitSystemImage = "dumbbell.fill" } }