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

export default class pinterest extends Component {
    render() {
        return (
            <div>
                <h3>Pinterest plugin</h3>
                <p>Our website contains functions of the Pinterest social network, operated by Pinterest Inc., 635 High Street, Palo Alto,
                    CA, 94301, USA.</p>
                <p>When you visit a page containing the Pinterest social plugin, your browser establishes a direct connection to the Pinterest
                    servers. The plugin transmits this log data to Pinterest servers in the United States. This log data may include
                    your IP address, the address of the websites visited, which also includes Pinterest features, browser type and settings,
                    the date and time of the request, how you use Pinterest, and cookies.</p>
                <p>More information about the purpose, scope and further processing and use of data by Pinterest, as well as your rights
                    and options to protect your privacy, can be found in the privacy notices of Pinterest:
                    <a href="https://about.pinterest.com/de/privacy-policy"
                        target="_blank">https://about.pinterest.com/de/privacy-policy</a>.</p>
            </div>
        );
    }
}