/ RacerTracer / Views / GoogleSearchConsoleView.swift
GoogleSearchConsoleView.swift
 1  //
 2  //  GoogleSearchConsoleView.swift
 3  //  RacerTracer
 4  //
 5  //  Created by Alexander Kunau on 29.09.25.
 6  //
 7  
 8  import SwiftUI
 9  
10  struct GoogleSearchConsoleView: View {
11      var body: some View {
12          VStack(spacing: 20) {
13              Image(systemName: "network.badge.shield.half.filled")
14                  .font(.system(size: 48))
15                  .foregroundColor(.accentColor)
16              
17              Text("Google Search Console")
18                  .font(.title2)
19                  .fontWeight(.semibold)
20              
21              Text("This feature will connect to Google Search Console API to analyze your search performance data.")
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 Search Console")
37      }
38  }
39  
40  #Preview {
41      GoogleSearchConsoleView()
42  }