// // ProfileView.swift // FitnessApp // // Created by Matt Bruce on 12/20/24. // import SwiftUI struct ProfileView: View { var body: some View { Text("Profile") } } #Preview { HomeView() }