import Foundation enum AppLinks { static let appName = "App AI for Reddit" static let website = URL(string: "https://sites.google.com/view/appforreddit/home")! static let privacy = URL(string: "https://sites.google.com/view/appforreddit/privacy-policy")! static let terms = URL(string: "https://sites.google.com/view/appforreddit/terms-and-condition")! static let support = URL(string: "https://sites.google.com/view/appforreddit/get-support")! static let appStoreID = "6785831537" static let appStore = URL(string: "https://apps.apple.com/app/id\(appStoreID)")! static let appStoreWriteReview = URL(string: "https://apps.apple.com/app/id\(appStoreID)?action=write-review")! static var shareMessage: String { "Check out \(appName) — AI-powered tools for Reddit posts, titles, and comments." } }