This commit is contained in:
2025-08-08 21:09:11 -04:00
parent 2f044c3d9c
commit 7bcc5d656c
38 changed files with 776 additions and 159 deletions

View File

@ -0,0 +1,28 @@
//
// 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"
}
}