import SwiftUI struct ContentView: View { var body: some View { VStack(spacing: 8) { Image(systemName: "heart.fill") .foregroundStyle(.red) Text("Coach") .font(.headline) Text("PrĂȘt") .font(.caption) .foregroundStyle(.secondary) } .padding() } } #Preview { ContentView() }