31 lines
1.2 KiB
JavaScript
31 lines
1.2 KiB
JavaScript
import "./Privacy.css";
|
|
|
|
export default function Privacy() {
|
|
return (
|
|
<div className="privacy-container">
|
|
<h1>Privacy</h1>
|
|
<p className="privacy-para">
|
|
Koin Ping is committed to protecting the privacy of our users. Koin Ping
|
|
does not sell or rent user information and we do not share user
|
|
information without prior consent except as compelled by law.
|
|
</p>
|
|
<p className="privacy-para">
|
|
Koin Ping collects only enough information from users to enable the
|
|
functioning of this website and its services. It will never collect
|
|
extra information about you and uses no tracking, cookies or logging
|
|
with personal information.
|
|
</p>
|
|
<p className="privacy-para">
|
|
The only information ever stored is your chosen email address and
|
|
contact information that is provided upon signup. Koin Ping is located
|
|
within the United States, and will process and store your information in
|
|
the United States.
|
|
</p>
|
|
<p className="privacy-para">
|
|
If you would like to remove your data, or if you have any questions
|
|
about how your data is used, please contact us.
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|