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

export default class instagram extends Component {
    render() {
        return (
            <div>
                <h3>Instagram plugin</h3>
                <p>Our website contains functions of the Instagram service. These functions are offered by Instagram Inc., 1601 Willow Road,
                    Menlo Park, CA 94025, USA.</p>
                <p>If you are logged into your Instagram account, you can click the Instagram button to link the content of our pages with
                    your Instagram profile. This means that Instagram can associate visits to our pages with your user account. As the
                    provider of this website, we expressly point out that we receive no information on the content of the transmitted
                    data or its use by Instagram.</p>
                <p>For more information, see the Instagram Privacy Policy:
                    <a href="https://instagram.com/about/legal/privacy/" target="_blank">https://instagram.com/about/legal/privacy/</a>.</p>
            </div>
        );
    }
}