Add privacy policy and EULA pages, update settings URLs

- Create landing_page/privacy.html and landing_page/eula.html matching site design
- Add app icon to nav/footer/favicon across all landing pages
- Update settings EULA and privacy links to feels.88oakapps.com

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Trey t
2026-02-10 15:50:53 -06:00
parent e0330dbc8d
commit 9c4e0a35a6
5 changed files with 965 additions and 9 deletions

View File

@@ -1072,7 +1072,7 @@ struct SettingsContentView: View {
theme.currentTheme.secondaryBGColor
Button(action: {
AnalyticsManager.shared.track(.eulaViewed)
if let url = URL(string: "https://feels.app/eula.html") {
if let url = URL(string: "https://feels.88oakapps.com/eula.html") {
UIApplication.shared.open(url)
}
}, label: {
@@ -1091,7 +1091,7 @@ struct SettingsContentView: View {
theme.currentTheme.secondaryBGColor
Button(action: {
AnalyticsManager.shared.track(.privacyPolicyViewed)
if let url = URL(string: "https://feels.app/privacy.html") {
if let url = URL(string: "https://feels.88oakapps.com/privacy.html") {
UIApplication.shared.open(url)
}
}, label: {
@@ -1814,7 +1814,7 @@ struct SettingsView: View {
theme.currentTheme.secondaryBGColor
Button(action: {
AnalyticsManager.shared.track(.eulaViewed)
openURL(URL(string: "https://feels.app/eula.html")!)
openURL(URL(string: "https://feels.88oakapps.com/eula.html")!)
}, label: {
Text(String(localized: "settings_view_show_eula"))
.foregroundColor(textColor)
@@ -1830,7 +1830,7 @@ struct SettingsView: View {
theme.currentTheme.secondaryBGColor
Button(action: {
AnalyticsManager.shared.track(.privacyPolicyViewed)
openURL(URL(string: "https://feels.app/privacy.html")!)
openURL(URL(string: "https://feels.88oakapps.com/privacy.html")!)
}, label: {
Text(String(localized: "settings_view_show_privacy"))
.foregroundColor(textColor)