Files
Project_Velocity/iOS/Features/Sentinel/SentinelView.swift

17 lines
470 B
Swift

import SwiftUI
struct SentinelView: View {
var body: some View {
VStack(spacing: 16) {
Image(systemName: "faceid")
.font(.system(size: 48))
Text("Sentinel")
.font(.title2.bold())
Text("FaceID and visitor event logs surface here.")
.foregroundStyle(.secondary)
}
.frame(maxWidth: .infinity, maxHeight: .infinity)
.navigationTitle("Sentinel")
}
}