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

export default class linkedin extends Component {
    render() {
        return (
            <div>
                <h3>LinkedIn plugin</h3>
                <p>Our site uses functions from the LinkedIn network. The service is provided by LinkedIn Corporation, 2029 Stierlin Court,
                    Mountain View, CA 94043, USA.</p>
                <p>Each time one of our pages containing LinkedIn features is accessed, your browser establishes a direct connection to
                    the LinkedIn servers. LinkedIn is informed that you have visited our web pages from your IP address. If you use the
                    LinkedIn “Recommend” button and are logged into your LinkedIn account, it is possible for LinkedIn to associate your
                    visit to our website to 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 LinkedIn.</p>
                <p>More information can be found in the LinkedIn privacy policy at
                    <a href="https://www.linkedin.com/legal/privacy-policy" target="_blank">https://www.linkedin.com/legal/privacy-policy</a>.</p>
            </div>
        );
    }
}