added TOS and Privacy content
This commit is contained in:
24
frontend/src/pages/privacy/Privacy.css
Normal file
24
frontend/src/pages/privacy/Privacy.css
Normal file
@@ -0,0 +1,24 @@
|
||||
.privacy-container {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
padding: 2rem;
|
||||
color: var(--color-text);
|
||||
}
|
||||
|
||||
.privacy-container h1 {
|
||||
font-size: 2rem;
|
||||
font-weight: 200;
|
||||
margin-bottom: 1.25rem;
|
||||
}
|
||||
|
||||
.privacy-para {
|
||||
margin-bottom: 1.25rem;
|
||||
font-size: 1.35rem;
|
||||
font-weight: 200;
|
||||
line-height: 1.65;
|
||||
color: var(--color-text-muted);
|
||||
}
|
||||
|
||||
.privacy-para:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
30
frontend/src/pages/privacy/Privacy.jsx
Normal file
30
frontend/src/pages/privacy/Privacy.jsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user