import SwiftUI @main struct VelocityApp: App { var body: some Scene { WindowGroup { ContentView() .preferredColorScheme(.dark) } } }