AppLinks.swift 686 B

123456789101112131415
  1. import Foundation
  2. enum AppLinks {
  3. static let appName = "App AI for Reddit"
  4. static let website = URL(string: "https://sites.google.com/view/appforreddit/home")!
  5. static let privacy = URL(string: "https://sites.google.com/view/appforreddit/privacy-policy")!
  6. static let terms = URL(string: "https://sites.google.com/view/appforreddit/terms-and-condition")!
  7. static let support = URL(string: "https://sites.google.com/view/appforreddit/get-support")!
  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. }