-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
78 lines (66 loc) · 5.19 KB
/
terms.html
File metadata and controls
78 lines (66 loc) · 5.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms of Service | {{BUSINESS_NAME}}</title>
<meta name="description" content="Terms of Service for {{BUSINESS_NAME}}. Read our terms and conditions.">
<script src="https://cdn.tailwindcss.com"></script>
<script>tailwind.config={theme:{extend:{colors:{primary:'{{PRIMARY_COLOR}}',accent:'{{ACCENT_COLOR}}',dark:'#050510'}}}}</script>
<link href="https://fonts.googleapis.com/css2?family={{HEADING_FONT}}:wght@400;700;900&family={{BODY_FONT}}:wght@300;400;600&display=swap" rel="stylesheet">
</head>
<body class="bg-white text-gray-800 font-[{{BODY_FONT}}]">
<nav class="fixed top-0 w-full bg-primary/95 backdrop-blur-md shadow-lg z-50">
<div class="max-w-7xl mx-auto px-6 py-4 flex justify-between items-center">
<a href="index.html" class="text-white font-bold text-xl font-[{{HEADING_FONT}}]">{{BUSINESS_NAME}}</a>
<div class="hidden md:flex gap-6">
<a href="index.html" class="text-white/80 hover:text-white transition">Home</a>
<a href="about.html" class="text-white/80 hover:text-white transition">About</a>
<a href="services.html" class="text-white/80 hover:text-white transition">Services</a>
<a href="contact.html" class="text-white/80 hover:text-white transition">Contact</a>
</div>
</div>
</nav>
<main class="pt-24 pb-16 max-w-4xl mx-auto px-6">
<h1 class="text-4xl font-bold font-[{{HEADING_FONT}}] text-primary mb-2">Terms of Service</h1>
<p class="text-gray-500 mb-8">Last updated: {{CURRENT_DATE}}</p>
<div class="prose prose-lg max-w-none space-y-6 text-gray-700">
<p>Welcome to {{BUSINESS_NAME}}. By accessing and using our website at {{WEBSITE_URL}}, you agree to be bound by these Terms of Service.</p>
<h2 class="text-2xl font-bold text-primary mt-8">1. Use of Website</h2>
<p>You may use this website for lawful purposes only. You agree not to use this website in any way that could damage, disable, or impair the website or interfere with any other party's use of the website.</p>
<h2 class="text-2xl font-bold text-primary mt-8">2. Intellectual Property</h2>
<p>All content on this website, including text, graphics, logos, and images, is the property of {{BUSINESS_NAME}} or its content suppliers and is protected by intellectual property laws. You may not reproduce, distribute, or create derivative works without our express written permission.</p>
<h2 class="text-2xl font-bold text-primary mt-8">3. Accuracy of Information</h2>
<p>We strive to provide accurate and up-to-date information on our website. However, we make no warranties or representations about the accuracy, reliability, or completeness of any information. Prices, availability, and service details are subject to change without notice.</p>
<h2 class="text-2xl font-bold text-primary mt-8">4. Third-Party Links</h2>
<p>Our website may contain links to third-party websites. We are not responsible for the content, privacy policies, or practices of any third-party websites. Visiting these links is at your own risk.</p>
<h2 class="text-2xl font-bold text-primary mt-8">5. Limitation of Liability</h2>
<p>To the fullest extent permitted by law, {{BUSINESS_NAME}} shall not be liable for any indirect, incidental, special, consequential, or punitive damages arising from your use of this website or our services.</p>
<h2 class="text-2xl font-bold text-primary mt-8">6. Indemnification</h2>
<p>You agree to indemnify and hold harmless {{BUSINESS_NAME}} and its officers, directors, employees, and agents from any claims, damages, or expenses arising from your use of the website or violation of these terms.</p>
<h2 class="text-2xl font-bold text-primary mt-8">7. Changes to Terms</h2>
<p>We reserve the right to modify these Terms of Service at any time. Changes will be effective immediately upon posting. Your continued use of the website constitutes acceptance of the modified terms.</p>
<h2 class="text-2xl font-bold text-primary mt-8">8. Governing Law</h2>
<p>These terms shall be governed by and construed in accordance with the laws of the jurisdiction in which {{BUSINESS_NAME}} operates, without regard to conflict of law principles.</p>
<h2 class="text-2xl font-bold text-primary mt-8">9. Contact</h2>
<p>For questions about these Terms of Service, contact us at:</p>
<ul class="list-none space-y-1">
<li><strong>{{BUSINESS_NAME}}</strong></li>
<li>{{BUSINESS_ADDRESS}}</li>
<li>Phone: {{BUSINESS_PHONE}}</li>
<li>Email: {{BUSINESS_EMAIL}}</li>
</ul>
</div>
</main>
<footer class="bg-dark text-white/70 py-12">
<div class="max-w-7xl mx-auto px-6 text-center">
<p>© {{CURRENT_YEAR}} {{BUSINESS_NAME}}. All rights reserved.</p>
<div class="mt-4 flex justify-center gap-6 text-sm">
<a href="privacy.html" class="hover:text-white transition">Privacy Policy</a>
<a href="terms.html" class="hover:text-white transition">Terms of Service</a>
<a href="contact.html" class="hover:text-white transition">Contact</a>
</div>
</div>
</footer>
</body>
</html>