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

export default class amazon extends Component {
    render() {
        return (
            <div>
                <h3>Amazon affiliate program</h3>
                <p>The site operators participating in the Amazon EU partner program. Our pages contain advertisements and links to the
                    sites run by amazon.de through which we can earn referral fees. Amazon uses cookies to trace the origin of the orders.
                    As a result, Amazon can detect that you clicked the affiliate link on our website.</p>
                <p>The storage of Amazon cookies is based on Art. 6 (f) DSGVO. The website operator has a legitimate interest in this service
                    since it only receives credit for referral fees if these cookies are set.</p>
                <p>To obtain more information about how Amazon uses your data, see the Amazon privacy policy at
                    <a href="https://www.amazon.de/gp/help/customer/display.html/ref=footer_privacy?ie=UTF8&nodeId=3312401"
                        target="_blank">https://www.amazon.de/gp/help/customer/display.html/ref=footer_privacy?ie=UTF8&nodeId=3312401</a>.</p>
            </div>
        );
    }
}