GooglePageInsightsView.swift
1 // 2 // GooglePageInsightsView.swift 3 // RacerTracer 4 // 5 // Created by Alexander Kunau on 29.09.25. 6 // 7 8 import SwiftUI 9 10 struct GooglePageInsightsView: View { 11 var body: some View { 12 VStack(spacing: 20) { 13 Image(systemName: "globe.badge.chevron.backward") 14 .font(.system(size: 48)) 15 .foregroundColor(.accentColor) 16 17 Text("Google PageSpeed Insights") 18 .font(.title2) 19 .fontWeight(.semibold) 20 21 Text("This feature will connect to Google PageSpeed Insights API to analyze your website's performance.") 22 .font(.subheadline) 23 .foregroundColor(.secondary) 24 .multilineTextAlignment(.center) 25 26 Text("Coming Soon") 27 .font(.caption) 28 .padding(.horizontal, 16) 29 .padding(.vertical, 8) 30 .background(Color.orange.opacity(0.1)) 31 .foregroundColor(.orange) 32 .cornerRadius(8) 33 } 34 .frame(maxWidth: .infinity, maxHeight: .infinity) 35 .padding(24) 36 .navigationTitle("Google PageSpeed Insights") 37 } 38 } 39 40 #Preview { 41 GooglePageInsightsView() 42 }