import React, { Component } from 'react';
import PropTypes from "prop-types"

export default class soundcloud extends Component {
    render() {
        return (
            <div>
                <h3>SoundCloud</h3>
                <p>On our pages, plugins of the SoundCloud social network (SoundCloud Limited, Berners House, 47-48 Berners Street, London
                    W1T 3NF, UK) may be integrated. The SoundCloud plugins can be recognized by the SoundCloud logo on our site.</p>
                <p>When you visit our site, a direct connection between your browser and the SoundCloud server is established via the plugin.
                    This enables SoundCloud to receive information that you have visited our site from your IP address. If you click
                    on the "Like" or "Share" buttons while you are logged into your SoundCloud account, you can link the content of our
                    pages to your SoundCloud profile. This means that SoundCloud can associate visits to our pages with your user account.
                    We would like to point out that, as the provider of these pages, we have no knowledge of the content of the data
                    transmitted or how it will be used by SoundCloud. For more information on SoundCloud's privacy policy, please go
                    to
                    <a href="https://soundcloud.com/pages/privacy" target="_blank">https://soundcloud.com/pages/privacy</a>.</p>
                <p>If you do not want SoundCloud to associate your visit to our site with your SoundCloud account, please log out of your
                    SoundCloud account.</p>
            </div>
        );
    }
}