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

export default class klarna extends Component {
    render() {
        return (
            <div>
                <h3>Klarna</h3>
                <p>Our website accepts payments via Klarna. This service is provided by Klarna AB, Sveavägen 46, 111 34 Stockholm, Sweden.</p>
                <p>Klarna offers various payment options (e.g. installment payments). If you opt to pay using Klarna, Klarna will collect
                    various pieces of personal data from you. Further information can be found in the Klarna privacy policy:
                    <a href="https://www.klarna.com/de/datenschutz/"
                        target="_blank">https://www.klarna.com/de/datenschutz/</a>.</p>
                <p>Klarna uses cookies to optimize the use of Klarna checkout solution. Optimizing the checkout solution provides a legitimate
                    interest within the meaning of Art. 6 (1) (f) DSGVO. Cookies are small text files that are stored on your device
                    and do no harm. They remain on your device until you delete them. For further information on how Klarna uses cookies,
                    go to the following link:
                    <a href="https://cdn.klarna.com/1.0/shared/content/policy/cookie/de_de/checkout.pdf" target="_blank">https://cdn.klarna.com/1.0/shared/content/policy/cookie/de_de/checkout.pdf</a>.</p>
                <p>Data is transmitted to Klarna based on Art. 6 (1)(a) (Consent) and Art. 6 (1)(b) DSGVO (Processing for contract purposes).
                    You have the option to revoke your consent at any time with future effect. It does not affect the processing of data
                    previously collected.</p>
            </div>
        );
    }
}