-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (87 loc) · 3.51 KB
/
index.html
File metadata and controls
98 lines (87 loc) · 3.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - TraviGate</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<style>
body {
font-family: Arial, sans-serif;
margin: 40px auto;
max-width: 800px;
line-height: 1.6;
color: #333;
}
h1, h2 {
color: #2C3E50;
}
.intro {
background-color: #f8f9fa;
padding: 20px;
border-radius: 8px;
margin-bottom: 30px;
}
.contact-info {
margin-top: 20px;
font-size: 14px;
color: #555;
}
.button-download {
display: inline-block;
margin-top: 20px;
padding: 12px 24px;
font-size: 16px;
font-weight: bold;
color: white;
background-color: #007BFF;
text-decoration: none;
border-radius: 5px;
}
.button-download:hover {
background-color: #0056b3;
}
footer {
margin-top: 50px;
font-size: 14px;
color: #888;
text-align: center;
}
</style>
</head>
<body>
<!-- Intro Section -->
<div class="intro">
<h1>TraviGate</h1>
<p>
Discover the world like never before with <strong>TraviGate</strong>, the all-in-one travel app designed to make your trips effortless and unforgettable. Whether you're planning a weekend getaway or a month-long adventure, TraviGate provides expert-curated travel guides and personalized itineraries for top destinations worldwide.
</p>
<p><strong>Download TraviGate today and start your next adventure!</strong></p>
</div>
<!-- Privacy Policy Section -->
<h1>Privacy Policy</h1>
<p><strong>Last Updated: 22 March, 2025</strong></p>
<h2>1. No Data Collection</h2>
<p>TraviGate does not collect, store, or share any personal data, usage data, or any other user information. We believe in a privacy-first approach and ensure that your data remains yours.</p>
<h2>2. No Third-Party Tracking</h2>
<p>We do not use analytics, third-party trackers, or any form of data monitoring. Your activity within the app is completely private.</p>
<h2>3. No Permissions Required</h2>
<p>TraviGate does not request access to your contacts, location, camera, microphone, or any other personal device features.</p>
<h2>4. Updates to This Policy</h2>
<p>We may update this Privacy Policy from time to time. Any changes will be posted on this page, and we encourage you to review it periodically.</p>
<h2>5. Contact Us</h2>
<p>If you have any questions about this Privacy Policy, feel free to reach out at <strong>travigate.app@gmail.com</strong>.</p>
<p>By using TraviGate, you agree to this Privacy Policy. Thank you for trusting us!</p>
<!-- Button to Download app-ads.txt -->
<a href="app-ads.txt" download class="button-download" aria-label="Download app-ads.txt file">
Download app-ads.txt
</a>
<!-- Footer -->
<footer class="contact-info">
Contact us: <a href="mailto:travigate.app@gmail.com">travigate.app@gmail.com</a> |
<a href="https://instagram.com/travigate.app " target="_blank">Instagram: @travigate.app</a>
<br><br>
© 2025 TraviGate — All rights reserved.
</footer>
</body>
</html>