added TOS and Privacy content

This commit is contained in:
KS Jannette
2026-05-12 18:17:02 -04:00
parent cb476c38d7
commit c387798be7
8 changed files with 340 additions and 17 deletions

View File

@@ -0,0 +1,30 @@
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>
);
}