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

export default class youtube extends Component {
    render() {
        return (
            <div>
                <h3>YouTube</h3>
                <p>Our website uses plugins from YouTube, which is operated by Google. The operator of the pages is YouTube LLC, 901 Cherry
                    Ave., San Bruno, CA 94066, USA.</p>
                <p>If you visit one of our pages featuring a YouTube plugin, a connection to the YouTube servers is established. Here the
                    YouTube server is informed about which of our pages you have visited.</p>
                <p>If you're logged in to your YouTube account, YouTube allows you to associate your browsing behavior directly with your
                    personal profile. You can prevent this by logging out of your YouTube account.</p>
                <p>YouTube is used to help make our website appealing. This constitutes a justified interest pursuant to Art. 6 (1) (f)
                    DSGVO.</p>
                <p>Further information about handling user data, can be found in the data protection declaration of YouTube under
                    <a href="https://www.google.de/intl/de/policies/privacy"
                        target="_blank">https://www.google.de/intl/de/policies/privacy</a>.</p>
            </div>
        );
    }
}