-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlicenses.html
More file actions
92 lines (84 loc) · 3.5 KB
/
Copy pathlicenses.html
File metadata and controls
92 lines (84 loc) · 3.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Third-Party Licenses - Rimar</title>
<link rel="stylesheet" href="styles.css">
<script src="nav.js"></script>
</head>
<body>
<!-- Navigation will be loaded dynamically -->
<main class="policy-content">
<article>
<h1>Third-Party Licenses</h1>
<p class="last-updated">Last updated: October 23, 2024</p>
<section>
<h2>Apple Frameworks</h2>
<div class="license-item">
<h3>SwiftUI</h3>
<p>Copyright © 2024 Apple Inc.</p>
<p>Used under the Apple SDK License Agreement.</p>
</div>
<div class="license-item">
<h3>MapKit</h3>
<p>Copyright © 2024 Apple Inc.</p>
<p>Used under the Apple SDK License Agreement.</p>
</div>
</section>
<section>
<h2>Google Services</h2>
<div class="license-item">
<h3>Google Mobile Ads SDK</h3>
<p>Copyright © 2024 Google LLC</p>
<p>Licensed under the Apache License, Version 2.0</p>
<a href="https://www.apache.org/licenses/LICENSE-2.0" target="_blank">View License</a>
</div>
</section>
<section>
<h2>Backend Services</h2>
<div class="license-item">
<h3>Supabase</h3>
<p>Copyright © 2024 Supabase</p>
<p>Licensed under the Apache License, Version 2.0</p>
<a href="https://github.com/supabase/supabase/blob/master/LICENSE" target="_blank">View License</a>
</div>
</section>
<section>
<h2>Map Data</h2>
<div class="license-item">
<h3>OpenStreetMap Data</h3>
<p>© OpenStreetMap contributors</p>
<p>Licensed under the Open Data Commons Open Database License (ODbL)</p>
<a href="https://www.openstreetmap.org/copyright" target="_blank">View License</a>
</div>
<div class="license-item">
<h3>Overpass API</h3>
<p>© OpenStreetMap contributors</p>
<p>Licensed under the GNU Affero General Public License</p>
<a href="https://github.com/drolbr/Overpass-API/blob/master/COPYING" target="_blank">View License</a>
</div>
</section>
<section>
<h2>Navigation Services</h2>
<div class="license-item">
<h3>Google Maps</h3>
<p>© 2024 Google LLC</p>
<p>Used under Google Maps Platform Terms of Service</p>
<a href="https://cloud.google.com/maps-platform/terms" target="_blank">View Terms</a>
</div>
</section>
</article>
</main>
<footer>
<div class="footer-content">
<div class="footer-links">
<a href="privacy.html">Privacy Policy</a>
<a href="terms.html">Terms of Use</a>
<a href="licenses.html">Licenses</a>
</div>
<p>© 2024 Rimar. All rights reserved.</p>
</div>
</footer>
</body>
</html>