import SwiftUI struct ContentView: View { var body: some View { VStack(spacing: 16) { Image(systemName: "terminal") .imageScale(.large) .font(.system(size: 60)) .foregroundStyle(.green) Text("pi remote") .font(.largeTitle.monospaced()) Text("Phase 2 — in development") .font(.caption) .foregroundStyle(.secondary) } .padding() } } #Preview { ContentView() }