source: imaps-frontend/src/pages/TermsOfService/TermsOfService.jsx@ 79a0317

main
Last change on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 3.5 KB
Line 
1import React from "react";
2import "./TermsOfService.css";
3
4const TermsOfService = () => {
5 return (
6 <div className="terms-container">
7 <h1>Terms of Service</h1>
8 <p>Effective Date: January 19 2024</p>
9
10 <section>
11 <h2>1. Acceptance of Terms</h2>
12 <p>
13 By accessing or using our indoor map application (“IMaps”), you agree to comply with and be bound by these Terms of Service (“Terms”). If you do not agree to these Terms, you may not use IMaps.
14 </p>
15 </section>
16
17 <section>
18 <h2>2. Changes to Terms</h2>
19 <p>
20 We reserve the right to modify these Terms at any time. We will notify you of significant changes by posting the updated Terms on our website. Your continued use of the IMaps constitutes acceptance of the revised Terms.
21 </p>
22 </section>
23
24 <section>
25 <h2>3. Use of IMaps</h2>
26 <p>
27 You agree to use IMaps only for lawful purposes. You must not:
28 </p>
29 <ul>
30 <li>Engage in any activity that disrupts or interferes with IMaps.</li>
31 <li>Use IMaps for any fraudulent, unlawful, or harmful activity.</li>
32 <li>Attempt to gain unauthorized access to our servers or systems.</li>
33 </ul>
34 </section>
35
36 <section>
37 <h2>4. User Accounts</h2>
38 <p>
39 To access certain features, you may need to create an account. You are responsible for maintaining the confidentiality of your account information and for all activities that occur under your account.
40 </p>
41 </section>
42
43 <section>
44 <h2>5. Intellectual Property</h2>
45 <p>
46 All content, designs, trademarks, and intellectual property associated with IMaps are the property of [Your Company Name] or its licensors. Unauthorized use of these materials is strictly prohibited.
47 </p>
48 </section>
49
50 <section>
51 <h2>6. Limitation of Liability</h2>
52 <p>
53 To the maximum extent permitted by law, [Your Company Name] shall not be liable for any direct, indirect, incidental, or consequential damages arising out of your use of the IMaps.
54 </p>
55 </section>
56
57 <section>
58 <h2>7. Termination</h2>
59 <p>
60 We reserve the right to terminate or suspend your access to IMaps at our sole discretion, without notice, for conduct that we believe violates these Terms or is harmful to other users or the IMaps.
61 </p>
62 </section>
63
64 <section>
65 <h2>8. Governing Law</h2>
66 <p>
67 These Terms shall be governed by and construed in accordance with the laws of [Your Jurisdiction]. Any disputes arising from these Terms will be subject to the exclusive jurisdiction of the courts in [Your Location].
68 </p>
69 </section>
70
71 <section>
72 <h2>9. Contact Us</h2>
73 <p>
74 If you have any questions about these Terms, please contact us at <a href="mailto:support@imaps.mk">support@imaps.mk</a>.
75 </p>
76 </section>
77 </div>
78 );
79};
80
81export default TermsOfService;
Note: See TracBrowser for help on using the repository browser.