use leptos::prelude::*; #[component] pub fn KmsPage() -> impl IntoView { view! {

"🔐 Key Management Service (KMS)"

"KMS Status"

"Service Status"
"✅ Running"
"Endpoint"
"http://kms:9998"
"Mode"
"Solo (Local SQLite)"

"Secret Management"

"Manage encryption keys, certificates, and secrets securely."

"Recent Keys"

"Key ID" "Type" "Purpose" "Created" "Status"
"key-001" "AES-256" "Data Encryption" "2025-10-07" "Active"
"cert-tls-001" "TLS Certificate" "HTTPS" "2025-10-06" "Active"
"ssh-key-prod" "SSH Key" "Server Access" "2025-10-05" "Active"
} }