diff --git a/VoiceInk/Views/LicenseManagementView.swift b/VoiceInk/Views/LicenseManagementView.swift index 2305991..11f6428 100644 --- a/VoiceInk/Views/LicenseManagementView.swift +++ b/VoiceInk/Views/LicenseManagementView.swift @@ -82,6 +82,15 @@ struct LicenseManagementView: View { } .buttonStyle(.plain) + Button { + if let url = URL(string: "https://tryvoiceink.com/docs") { + NSWorkspace.shared.open(url) + } + } label: { + featureItem(icon: "book.fill", title: "Docs", color: .indigo) + } + .buttonStyle(.plain) + Button { if let url = URL(string: "https://github.com/Beingpax/VoiceInk/issues") { NSWorkspace.shared.open(url)