// // UnsupportedHardwareView.swift // Zyquo Local // // Author: Simon-Pierre Boucher // Mail: contact@spboucher.ai // import SwiftUI /// Polite full-window notice shown on non-Apple-Silicon hardware. struct UnsupportedHardwareView: View { var body: some View { VStack(spacing: 16) { Image(systemName: "cpu") .font(.system(size: 56, weight: .light)) .foregroundStyle(.secondary) Text("Apple Silicon Required") .font(.title2.weight(.semibold)) Text("Zyquo Local runs language models on-device with MLX, which requires an Apple Silicon Mac (M1 or later). This Mac's processor is not supported.") .multilineTextAlignment(.center) .foregroundStyle(.secondary) .frame(maxWidth: 420) } .frame(minWidth: 640, minHeight: 420) .padding(40) } }