-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
81 lines (67 loc) · 5.36 KB
/
terms.html
File metadata and controls
81 lines (67 loc) · 5.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms & Conditions - The Grove</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class="navbar">
<div class="container">
<div class="nav-brand">
<img src="icon.png" alt="The Grove Logo" class="logo">
<span>The Grove</span>
</div>
<ul class="nav-menu">
<li><a href="index.html">Home</a></li>
<li><a href="privacy.html">Privacy</a></li>
<li><a href="terms.html" class="active">Terms</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<section class="content-page">
<div class="container">
<h1>Terms & Conditions</h1>
<p class="last-updated"><strong>Last updated: 3 December 2025</strong></p>
<div class="policy-content">
<p>These Terms & Conditions apply to the <strong>The Grove - Sleep Sound</strong> app (hereafter referred to as "Application") for mobile devices, created by Michele Cipriani and Edoardo Bazzotti (hereafter referred to as "Service Provider"). The service is currently <strong>Free</strong>, with the possibility of introducing optional premium features in the future.</p>
<h2>Acceptance of Terms</h2>
<p>By downloading or using the Application, you agree to these Terms & Conditions. Please read them carefully. Unauthorized copying, modification, or extraction of the source code, trademarks, or any part of the Application is prohibited. All intellectual property rights remain with the Service Provider.</p>
<h2>Use of the Application</h2>
<p>The Application is provided "AS IS". The Service Provider strives to ensure the Application is reliable and functional but reserves the right to modify the Application or charge for services at any time. Any charges will be clearly communicated.</p>
<h2>Personal Data</h2>
<p>The Application only stores <strong>user preferences and settings locally on the device</strong> (e.g., theme, selected sounds). It is your responsibility to maintain the security of your device.<br>
The Service Provider advises against jailbreaking or rooting your device, as this can compromise security and affect the Application's functionality.</p>
<h2>Connectivity, Data Usage & Cloud Library</h2>
<p>Some features, specifically the Sound Library, require an active internet connection to browse and download new content. The Service Provider is <strong>not responsible</strong> for issues arising from lack of Wi-Fi, exhausted data plans, or device battery limitations.</p>
<p><strong>Offline Use:</strong> Once soundscapes are downloaded from the library, they are saved locally on your device and can be used offline without an internet connection.</p>
<p>Any charges from your mobile provider (including roaming) for downloading content are your responsibility. Ensure you have permission if you are not the device's bill payer.</p>
<h2>Updates and Termination</h2>
<p>The Application may be updated to maintain compatibility or improve functionality. You agree to accept updates when offered.<br>
The Service Provider may discontinue the Application at any time without notice. Upon termination, your rights to use the Application end, and you must delete it if instructed.</p>
<h2>Limitation of Liability</h2>
<p>While the Service Provider aims to provide accurate and updated information, they rely on third-party sources and accept <strong>no liability</strong> for direct or indirect losses resulting from the use of the Application.</p>
<h2>Third-Party Platforms</h2>
<p>The Application is provided through third-party distribution platforms such as the Google Play Store and Apple App Store (collectively, "Stores"). Your use of the Application is also governed by the terms, conditions, and policies of the Store from which you downloaded it. You are responsible for complying with any applicable Store rules. The Service Provider is not liable for any actions or obligations of the Stores that may affect your use of the Application.</p>
<h2>Changes to Terms</h2>
<p>These Terms & Conditions may be updated periodically. You are encouraged to review this page regularly. Continued use of the Application constitutes acceptance of any changes.</p>
<h2>Contact</h2>
<p>For questions or suggestions regarding these Terms & Conditions, contact the Service Provider at <strong>doublee.studio.team@gmail.com</strong>.</p>
</div>
</div>
</section>
<footer>
<div class="container">
<p>© 2025 The Grove. All rights reserved.</p>
<div class="footer-links">
<a href="privacy.html">Privacy Policy</a>
<a href="terms.html">Terms & Conditions</a>
<a href="contact.html">Contact Us</a>
</div>
</div>
</footer>
</body>
</html>