-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterms.html
78 lines (71 loc) · 4.05 KB
/
terms.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms of Use - QuickLinks</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body class="bg-gray-100 dark:bg-gray-900 text-gray-900 dark:text-gray-100 transition duration-500">
<!-- Navbar -->
<div class="bg-white dark:bg-gray-800 shadow-md p-4 flex justify-between items-center">
<a href="index.html" class="text-lg font-bold text-purple-500 hover:underline">QuickLinks</a>
<button id="notifyButton"
class="bg-gradient-to-r from-purple-500 to-pink-500 text-white py-2 px-4 rounded-lg hover:from-pink-500 hover:to-purple-500 flex items-center">
<i class="fas fa-bell mr-2"></i> Notify Release Updates
</button>
</div>
<div class="container mx-auto p-6 max-w-7xl">
<div class="bg-white dark:bg-gray-800 p-6 rounded-lg shadow-lg">
<h1 class="text-3xl font-bold mb-6">Terms of Use</h1>
<p class="mb-6">Please read our terms of use carefully. By using QuickLinks, you agree to the following
terms and conditions.</p>
<ul class="list-disc pl-5 space-y-2">
<li>You must be at least 13 years old to use this service.</li>
<li>Do not use QuickLinks for any illegal activities.</li>
<li>Your use of the service is at your sole risk. The service is provided on an "as is" and "as
available" basis.</li>
<li>QuickLinks is not responsible for the content of external links.</li>
<li>We reserve the right to terminate accounts for violations of our terms.</li>
<li>These terms may be updated at any time without prior notice. Continued use of the service
constitutes acceptance of the updated terms.</li>
</ul>
<div class="flex justify-end mt-6">
<button onclick="window.location.href='index.html'"
class="py-2 px-4 bg-purple-500 text-white rounded-md hover:bg-purple-600">Back to Home</button>
</div>
</div>
</div>
<!-- Sidebar -->
<div id="sidebar"
class="fixed inset-y-0 right-0 bg-gray-800 bg-opacity-75 dark:bg-gray-700 dark:bg-opacity-75 transform translate-x-full transition-transform duration-300 z-50">
<div class="bg-white dark:bg-gray-900 p-6 w-80 h-full shadow-lg">
<button id="closeSidebar"
class="text-gray-800 dark:text-gray-100 hover:text-gray-600 dark:hover:text-gray-400 mb-4">
<i class="fas fa-times"></i>
</button>
<h2 class="text-2xl font-bold mb-6">App Details</h2>
<ul class="space-y-4">
<li><a href="faq.html" class="hover:underline">FAQ'S</a></li>
<li><a href="legal.html" class="hover:underline">Legal</a></li>
<li><a href="terms.html" class="hover:underline">Terms of Use</a></li>
<li><a href="privacy.html" class="hover:underline">Data Collection and Privacy Policy</a></li>
<li><a href="https://github.com" target="_blank" class="hover:underline">GitHub</a></li>
<li><a href="support.html" class="hover:underline">Support</a></li>
<li><a href="demo.html" class="hover:underline">Request a Demo</a></li>
</ul>
<div class="mt-6">
<label for="themeToggle" class="block text-gray-800 dark:text-gray-100 font-medium mb-2">Toggle
Light/Dark Mode</label>
<input type="checkbox" id="themeToggle" class="toggle-checkbox">
</div>
</div>
</div>
<script>
document.getElementById('notifyButton').addEventListener('click', () => {
window.location.href = 'releaseupdate.html';
});
</script>
</body>
</html>