| 123456789101112131415 |
- import Foundation
- enum AppLinks {
- static let appName = "Reddora AI"
- static let website = URL(string: "https://reddora.ai")!
- static let privacy = URL(string: "https://reddora.ai/privacy")!
- static let terms = URL(string: "https://reddora.ai/terms")!
- static let support = URL(string: "mailto:support@reddora.ai")!
- static let appStore = URL(string: "https://apps.apple.com/app/reddora-ai")!
- static var shareMessage: String {
- "Check out \(appName) — AI-powered tools for Reddit posts, titles, and comments."
- }
- }
|