AppLinks.swift 732 B

12345678910111213141516
  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 appStoreID = "6785831537"
  9. static let appStore = URL(string: "https://apps.apple.com/app/id\(appStoreID)")!
  10. static var shareMessage: String {
  11. "Check out \(appName) — AI-powered tools for Reddit posts, titles, and comments."
  12. }
  13. }