Initial Commit

This commit is contained in:
2025-08-13 11:10:52 -04:00
commit 2bfeb6a165
15 changed files with 708 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
//
// ContentView.swift
// Workouts
//
// Created by rzen on 8/13/25 at 11:10AM.
//
// Copyright 2025 Rouslan Zenetl. All Rights Reserved.
//
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
}
.padding()
}
}
#Preview {
ContentView()
}