AppLinks.swift 552 B

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