cbillowes/curious-programmer-helium

View on GitHub
src/components/PrivacyPolicy/AdditionalInformation.jsx

Summary

Maintainability
A
3 hrs
Test Coverage
import React, { Component } from "react"

class AdditionalInformation extends Component {
  render() {
    return (
      <div id="additional-information">
        <div>
          <h2>Additional information about Data collection and processing</h2>
          <h3>Legal action</h3>
          <p>
            The User's Personal Data may be used for legal purposes by the
            Owner in Court or in the stages leading to possible legal action
            arising from improper use of this Application or the related
                  Services.<br />
            The User declares to be aware that the Owner may be required to
                  reveal personal data upon request of public authorities.</p>

          <h3>Additional information about User's Personal Data</h3>
          <p>
            In addition to the information contained in this privacy policy,
            this Application may provide the User with additional and
            contextual information concerning particular Services or the
                  collection and processing of Personal Data upon request.</p>

          <h3>System logs and maintenance</h3>
          <p>
            For operation and maintenance purposes, this Application and any
            third-party services may collect files that record interaction
            with this Application (System logs) use other Personal Data (such
                  as the IP Address) for this purpose.</p>

          <h3>Information not contained in this policy</h3>
          <p>
            More details concerning the collection or processing of Personal
            Data may be requested from the Owner at any time. Please see the
                  contact information at the beginning of this document.</p>

          <h3>How “Do Not Track” requests are handled</h3>
          <p>
            This Application does not support “Do Not Track” requests.<br />
            To determine whether any of the third-party services it uses honor
                  the “Do Not Track” requests, please read their privacy policies.</p>

          <h3>Changes to this privacy policy</h3>
          <p>
            The Owner reserves the right to make changes to this privacy
            policy at any time by giving notice to its Users on this page and
            possibly within this Application and/or - as far as technically
            and legally feasible - sending a notice to Users via any contact
            information available to the Owner. It is strongly recommended to
            check this page often, referring to the date of the last
                  modification listed at the bottom.<br /><br />
            Should the changes affect processing activities performed on the
            basis of the User’s consent, the Owner shall collect new consent
                  from the User, where required.</p>
        </div>
        <div>
          <h3>Definitions and legal references</h3>
          <div>
            <h4>Personal Data (or Data)</h4>
            <p>
              Any information that directly, indirectly, or in connection with
              other information — including a personal identification number —
              allows for the identification or identifiability of a natural
                    person.</p>

            <h4>Usage Data</h4>
            <p>
              Information collected automatically through this Application (or
              third-party services employed in this Application), which can
              include: the IP addresses or domain names of the computers
              utilized by the Users who use this Application, the URI
              addresses (Uniform Resource Identifier), the time of the
              request, the method utilized to submit the request to the
              server, the size of the file received in response, the numerical
              code indicating the status of the server's answer (successful
              outcome, error, etc.), the country of origin, the features of
              the browser and the operating system utilized by the User, the
              various time details per visit (e.g., the time spent on each
              page within the Application) and the details about the path
              followed within the Application with special reference to the
              sequence of pages visited, and other parameters about the device
                    operating system and/or the User's IT environment.</p>

            <h4>User</h4>
            <p>
              The individual using this Application who, unless otherwise
                    specified, coincides with the Data Subject.</p>

            <h4>Data Subject</h4>
            <p>The natural person to whom the Personal Data refers.</p>

            <h4>Data Processor (or Data Supervisor)</h4>
            <p>
              The natural or legal person, public authority, agency or other
              body which processes Personal Data on behalf of the Controller,
                    as described in this privacy policy.</p>

            <h4>Data Controller (or Owner)</h4>
            <p>
              The natural or legal person, public authority, agency or other
              body which, alone or jointly with others, determines the
              purposes and means of the processing of Personal Data, including
              the security measures concerning the operation and use of this
              Application. The Data Controller, unless otherwise specified, is
                    the Owner of this Application.</p>

            <h4>This Application</h4>
            <p>
              The means by which the Personal Data of the User is collected
                    and processed.</p>

            <h4>Service</h4>
            <p>
              The service provided by this Application as described in the
                    relative terms (if available) and on this site/application.</p>

            <h4>European Union (or EU)</h4>
            <p>
              Unless otherwise specified, all references made within this
              document to the European Union include all current member states
                    to the European Union and the European Economic Area.</p>

            <h4>Cookies</h4>
            <p>Small piece of data stored in the User's device.</p>

            <hr />

            <h4>Legal information</h4>
            <p>
              This privacy statement has been prepared based on provisions of
              multiple legislations, including Art. 13/14 of Regulation (EU)
                    2016/679 (General Data Protection Regulation).</p>
            <p>
              This privacy policy relates solely to this Application, if not
                    stated otherwise within this document.</p>
          </div>
        </div>
      </div>
    )
  }
}

export default AdditionalInformation