-
Notifications
You must be signed in to change notification settings - Fork 0
/
terms-conditions.tsx
214 lines (188 loc) · 10.7 KB
/
terms-conditions.tsx
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
// src/app/[countryCode]/(main)/content/terms-conditions
import { Heading, Text } from "@medusajs/ui"
import React from 'react'
import { Metadata } from "next"
import InteractiveLink from "@modules/common/components/interactive-link"
export const metadata: Metadata = {
title: "Terms and Conditions",
description: "Read our refund policy and learn about how refunds are processed.",
}
const TermsPolicy = () => {
return (
<div className="container mx-auto p-4">
<h2 className="text-3xl font-bold mb-4">Terms and Conditions</h2>
<ol className="space-y-6">
{/* Section 1: Acceptance of Terms */}
<div className="bg-white p-6 rounded-lg shadow-md">
<li>
<h3 className="text-2xl font-semibold mb-4">Acceptance of Terms</h3>
<p className="text-gray-700">
By accessing or using this website, you agree to be bound by these Terms and Conditions, our Privacy Policy, and any other policies or agreements referenced herein. If you do not agree with any of these terms, you may not use this website.
</p>
</li>
</div>
{/* Section 2: Use of the Website */}
<div className="bg-white p-6 rounded-lg shadow-md">
<li>
<h3 className="text-2xl font-semibold mb-4">Use of the Website</h3>
<p className="text-gray-700">
You may use this website only for lawful purposes and in accordance with these Terms and Conditions. You agree not to:
</p>
<ul className="list-disc ml-6 text-gray-700">
<li>Use the website in any way that violates any applicable federal, state, local, or international law or regulation.</li>
<li>Engage in any conduct that restricts or inhibits anyone's use or enjoyment of the website, or which, as determined by us, may harm the website or users of the website or expose them to liability.</li>
<li>Use the website to impersonate any person or entity, or falsely state or otherwise misrepresent your affiliation with a person or entity.</li>
<li>Interfere with or disrupt the operation of the website or the servers or networks connected to the website, or disobey any requirements, procedures, policies, or regulations of networks connected to the website.</li>
</ul>
</li>
</div>
{/* Section 3: Products and Services */}
<div className="bg-white p-6 rounded-lg shadow-md">
<li>
<h3 className="text-2xl font-semibold mb-4">Products and Services</h3>
<p className="text-gray-700">
We attempt to be as accurate as possible in describing our products and services on the website. However, we do not warrant that product descriptions or other content of this website is accurate, complete, reliable, current, or error-free. We reserve the right to modify or discontinue any product or service at any time without notice.
</p>
</li>
</div>
{/* Section 4: Orders and Payments */}
<div className="bg-white p-6 rounded-lg shadow-md">
<li>
<h3 className="text-2xl font-semibold mb-4">Orders and Payments</h3>
<ul className="list-disc ml-6 text-gray-700">
<li>All orders are subject to acceptance and availability.</li>
<li>We reserve the right to refuse any order for any reason.</li>
<li>Prices for our products are subject to change without notice.</li>
<li>Payment for all orders must be made in full at the time of purchase.</li>
<li>We accept payment by Credit Cards and Online Bank transfer.</li>
</ul>
</li>
</div>
{/* Section 5: Shipping and Delivery */}
<div className="bg-white p-6 rounded-lg shadow-md">
<li>
<h3 className="text-2xl font-semibold mb-4">Shipping and Delivery</h3>
<ul className="list-disc ml-6 text-gray-700">
<li>We will ship your order to the address you provide at checkout.</li>
<li>Shipping costs will be calculated and displayed at checkout.</li>
<li>Delivery times may vary depending on your location and the shipping method you choose.</li>
<li>We are not responsible for any delays or damages caused by the shipping carrier.</li>
</ul>
</li>
</div>
{/* Section 6: Returns and Refunds */}
<div className="bg-white p-6 rounded-lg shadow-md">
<li>
<h3 className="text-2xl font-semibold mb-4">Returns and Refunds</h3>
<p className="text-gray-700">
We offer a 30-day return policy on all products. To be eligible for a return, your item must be unused and in the same condition that you received it. It must also be in the original packaging. To initiate a return, please contact our customer service team.
</p>
<p className="text-gray-700">
Once your return is received and inspected, we will send you an email to notify you that we have received your returned item. We will also notify you of the approval or rejection of your refund. If your return is approved, then your refund will be processed, and a credit will automatically be applied to your credit card or original method of payment, within a certain number of days.
</p>
</li>
</div>
{/* Section 7: User Accounts */}
<div className="bg-white p-6 rounded-lg shadow-md">
<li>
<h3 className="text-2xl font-semibold mb-4">User Accounts</h3>
<p className="text-gray-700">
In order to access certain features of the website, you may be required to create a user account. You are responsible for maintaining the confidentiality of your account information, including your username and password. You agree to accept responsibility for all activities that occur under your account.
</p>
</li>
</div>
{/* Section 8: Intellectual Property */}
<div className="bg-white p-6 rounded-lg shadow-md">
<li>
<h3 className="text-2xl font-semibold mb-4">Intellectual Property</h3>
<p className="text-gray-700">
All content on this website, including but not limited to text, graphics, logos, images, and software, is the property of our company or its content suppliers and is protected by United States and international copyright laws.
</p>
</li>
</div>
{/* Section 9: Disclaimer of Warranties */}
<div className="bg-white p-6 rounded-lg shadow-md">
<li>
<h3 className="text-2xl font-semibold mb-4">Disclaimer of Warranties</h3>
<p className="text-gray-700">
This website and all products and services offered on this website are provided on an "as is" and "as available" basis. Our website makes no representations or warranties of any kind, express or implied, as to the operation of this website or the information, content, materials, or products included on this website.
</p>
</li>
</div>
{/* Section 10: Limitation of Liability */}
<div className="bg-white p-6 rounded-lg shadow-md">
<li>
<h3 className="text-2xl font-semibold mb-4">Limitation of Liability</h3>
<p className="text-gray-700">
In no event shall our company or its directors, officers, employees, or agents be liable for any direct, indirect, incidental, special, or consequential damages arising out of or in connection with the use of this website or the products or services offered on this website.
</p>
</li>
</div>
{/* Section 11: Indemnification */}
<div className="bg-white p-6 rounded-lg shadow-md">
<li>
<h3 className="text-2xl font-semibold mb-4">Indemnification</h3>
<p className="text-gray-700">
You agree to indemnify and hold our store and its affiliates, officers, agents, employees, and partners harmless from any claim or demand, including reasonable attorneys' fees, made by any third party due to or arising out of your use of the website, your violation of these Terms and Conditions, or your violation of any rights of another.
</p>
</li>
</div>
{/* Section 12: Governing Law */}
<div className="bg-white p-6 rounded-lg shadow-md">
<li>
<h3 className="text-2xl font-semibold mb-4">Governing Law</h3>
<p className="text-gray-700">
These Terms and Conditions shall be governed by and construed in accordance with the laws of Australia, without giving effect to any principles of conflicts of law.
</p>
</li>
</div>
{/* Section 13: Dispute Resolution */}
<div className="bg-white p-6 rounded-lg shadow-md">
<li>
<h3 className="text-2xl font-semibold mb-4">Dispute Resolution</h3>
<p className="text-gray-700">
Any dispute arising out of or relating to these Terms and Conditions or the use of the website shall be resolved through binding arbitration in accordance with the rules of the American Arbitration Association.
</p>
</li>
</div>
{/* Section 14: Changes to Terms and Conditions */}
<div className="bg-white p-6 rounded-lg shadow-md">
<li>
<h3 className="text-2xl font-semibold mb-4">Changes to Terms and Conditions</h3>
<p className="text-gray-700">
We reserve the right to modify these Terms and Conditions at any time. Any changes will be effective immediately upon posting on the website. Your continued use of the website following the posting of any changes constitutes your acceptance of those changes.
</p>
</li>
</div>
{/* Section 15: Severability */}
<div className="bg-white p-6 rounded-lg shadow-md">
<li>
<h3 className="text-2xl font-semibold mb-4">Severability</h3>
<p className="text-gray-700">
If any provision of these Terms and Conditions is held to be invalid or unenforceable, that provision shall be struck from these Terms and Conditions and the remaining provisions shall remain in full force and effect.
</p>
</li>
</div>
{/* Section 16: Waiver */}
<div className="bg-white p-6 rounded-lg shadow-md">
<li>
<h3 className="text-2xl font-semibold mb-4">Waiver</h3>
<p className="text-gray-700">
The failure of us to enforce any right or provision of these Terms and Conditions shall not constitute a waiver of such right or provision.
</p>
</li>
</div>
{/* Section 17: Entire Agreement */}
<div className="bg-white p-6 rounded-lg shadow-md">
<li>
<h3 className="text-2xl font-semibold mb-4">Entire Agreement</h3>
<p className="text-gray-700">
These Terms and Conditions constitute the entire agreement between you and [Your Company Name] regarding the use of the website and supersede all prior or contemporaneous communications and proposals, whether oral or written, between you and our store. For more information you can contact us.
</p>
</li>
</div>
</ol>
</div>
)
}
export default TermsPolicy