[79a0317] | 1 | import React from "react";
|
---|
| 2 | import "./PrivacyPolicy.css";
|
---|
| 3 |
|
---|
| 4 | const PrivacyPolicy = () => {
|
---|
| 5 | return (
|
---|
| 6 | <div className="privacy-policy-container">
|
---|
| 7 | <h1>Privacy Policy</h1>
|
---|
| 8 | <p>Effective Date: January 19, 2025</p>
|
---|
| 9 | <p>
|
---|
| 10 | Welcome to <strong>IMAPS</strong>, your indoor mapping solution. Your privacy is
|
---|
| 11 | important to us. This Privacy Policy explains how we collect, use, and
|
---|
| 12 | protect your personal information.
|
---|
| 13 | </p>
|
---|
| 14 |
|
---|
| 15 | <h2>1. Information We Collect</h2>
|
---|
| 16 | <p>
|
---|
| 17 | We may collect the following types of information when you use our
|
---|
| 18 | application:
|
---|
| 19 | </p>
|
---|
| 20 | <ul>
|
---|
| 21 | <li>Location data for providing navigation and map services.</li>
|
---|
| 22 | <li>
|
---|
| 23 | Device information, including operating system and browser type.
|
---|
| 24 | </li>
|
---|
| 25 | <li>
|
---|
| 26 | Usage data, such as search queries, clicks, and time spent on the app.
|
---|
| 27 | </li>
|
---|
| 28 | <li>Any feedback or messages you provide via the app.</li>
|
---|
| 29 | </ul>
|
---|
| 30 |
|
---|
| 31 | <h2>2. How We Use Your Information</h2>
|
---|
| 32 | <p>
|
---|
| 33 | The information we collect is used to:
|
---|
| 34 | </p>
|
---|
| 35 | <ul>
|
---|
| 36 | <li>Provide accurate navigation and mapping services.</li>
|
---|
| 37 | <li>Enhance the app's features and functionality.</li>
|
---|
| 38 | <li>Analyze usage trends to improve performance.</li>
|
---|
| 39 | <li>Respond to user queries and support requests.</li>
|
---|
| 40 | </ul>
|
---|
| 41 |
|
---|
| 42 | <h2>3. Sharing Your Information</h2>
|
---|
| 43 | <p>
|
---|
| 44 | We do not sell your personal information. However, we may share your
|
---|
| 45 | data with:
|
---|
| 46 | </p>
|
---|
| 47 | <ul>
|
---|
| 48 | <li>Third-party service providers who assist in app operations.</li>
|
---|
| 49 | <li>
|
---|
| 50 | Legal authorities if required by law or to protect the app's security.
|
---|
| 51 | </li>
|
---|
| 52 | </ul>
|
---|
| 53 |
|
---|
| 54 | <h2>4. Data Security</h2>
|
---|
| 55 | <p>
|
---|
| 56 | We implement industry-standard measures to protect your data. However,
|
---|
| 57 | no system is completely secure, and we cannot guarantee absolute
|
---|
| 58 | security.
|
---|
| 59 | </p>
|
---|
| 60 |
|
---|
| 61 | <h2>5. Your Choices</h2>
|
---|
| 62 | <p>
|
---|
| 63 | You can control the information we collect by managing your device
|
---|
| 64 | settings or opting out of certain features.
|
---|
| 65 | </p>
|
---|
| 66 |
|
---|
| 67 | <h2>6. Changes to This Privacy Policy</h2>
|
---|
| 68 | <p>
|
---|
| 69 | We may update this Privacy Policy from time to time. Changes will be
|
---|
| 70 | posted on this page with an updated "Effective Date."
|
---|
| 71 | </p>
|
---|
| 72 |
|
---|
| 73 | <h2>7. Contact Us</h2>
|
---|
| 74 | <p>
|
---|
| 75 | If you have any questions or concerns about this Privacy Policy, please
|
---|
| 76 | contact us at <a href="mailto:support@imaps.mk">support@imaps.mk</a>.
|
---|
| 77 | </p>
|
---|
| 78 | </div>
|
---|
| 79 | );
|
---|
| 80 | };
|
---|
| 81 |
|
---|
| 82 | export default PrivacyPolicy;
|
---|