crane-cloud/frontend

View on GitHub
src/components/Documents/privacy.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import React from "react";
import NewHeader from "../NewHeader";
const Privacy = () => (
  <div className="TeamPageContainer">
    <NewHeader />
    <div className="Terms">
      <h2>Privacy Policy</h2>
      <p>
        <h4>SECTION 1 - WHAT DO WE DO WITH YOUR INFORMATION?</h4>
        When you register at our website, as part of the verification process,
        we collect the personal information you give us such as your name and
        email address.{" "}
      </p>

      <p>
        <h4>SECTION 2 - CONSENT</h4>
        <h5>How do you get my consent?</h5>
        When you provide us with personal information to complete a
        registration, verify your identity or request a service, we imply that
        you consent to our collecting it and using it for that specific reason
        only. If we ever ask for your personal information for a secondary
        reason, like marketing, we will either ask you directly for your
        expressed consent, or provide you with an opportunity to say no.
      </p>

      <p>
        <h4>SECTION 3 - DISCLOSURE</h4>
        We may disclose your personal information if we are required by law to
        do so or if you violate our Terms of Service.
      </p>

      <p>
        <h4>SECTION 4 – Database</h4>
        Our platform database is hosted with an online hosting platform (the
        Cloud) that allows us to provide services to you. Your data is stored
        through their data storage services and applications. We store your data
        on a secure server behind a firewall.
      </p>

      <p>
        <h4>SECTION 5 - THIRD-PARTY SERVICES</h4>
        <p>
          In general, the third-party providers, if used, will only collect, use
          and disclose your information to the extent necessary to allow them to
          perform the services they provide to us.
        </p>
        <p>
          However, certain third-party service providers, such as payment
          gateways and other payment transaction processors, have their own
          privacy policies in respect to the information we are required to
          provide to them for your purchase-related transactions if payment is
          ever required.
        </p>
        <p>
          For these providers, we recommend that you read their privacy policies
          so you can understand the manner in which your personal information
          will be handled by these providers. In particular, remember that
          certain providers may be located in or have facilities that are
          located in a different jurisdiction than either you or us. So if you
          elect to proceed with a transaction that involves the services of a
          third-party service provider, then your information may become subject
          to the laws of the jurisdiction(s) in which that service provider or
          its facilities are located.
        </p>{" "}
      </p>

      <h5>Links</h5>
      <p>
        When you click on links on our website, they may direct you away from
        our site. We are not responsible for the privacy practices of other
        sites and encourage you to read their privacy statements.
      </p>

      <p>
        <h4>SECTION 6 - SECURITY</h4>
        To protect your personal information, we take reasonable precautions and
        follow industry best practices to make sure it is not inappropriately
        lost, misused, accessed, disclosed, altered or destroyed. If you provide
        us with your personal information, the information is encrypted using
        secure socket layer technology (SSL) and stored with an encryption.
        Although no method of transmission over the Internet or electronic
        storage is 100% secure, we follow all standard security requirements to
        ensure that your data is protected.
      </p>

      <p>
        <h4>SECTION 7 - AGE OF CONSENT</h4>
        By using this site, you represent that you are at least the age of
        majority in your country, state or province of residence, or that you
        are the age of majority in your state or province of residence and you
        have given us your consent to allow any of your minor dependents to use
        this site.
      </p>

      <p>
        <h4>SECTION 8 - CHANGES TO THIS PRIVACY POLICY</h4>
        We reserve the right to modify this privacy policy at any time, so
        please review it frequently. Changes and clarifications will take effect
        immediately upon their posting on the website. If we make material
        changes to this policy, we reserve the right not to notify you that it
        has been updated.
      </p>

      <p>
        <h4>QUESTIONS AND CONTACT INFORMATION</h4>
        If you would like to: <strong>register a complaint</strong>, or simply want more
        information <strong>contact our Business and Technology Lead at:</strong>{" "}
        <code>dorothy@cranecloud.io</code>
      </p>
    </div>
  </div>
);

export default Privacy;