Website/components/privacy.js

20 lines
1.1 KiB
JavaScript
Raw Normal View History

2021-12-21 19:08:36 +00:00
import styles from '../styles/Privacy.module.css'
export default function Privacy() {
return (
2021-12-21 22:42:34 +00:00
<div className={styles.ScrollBox}>
<div className={styles.Privacy}>
<h1>Welcome to TheRed.SH!</h1>
<h3>TheRed.SH is a self-hosted site made by TheRed. Due to potential for concerned users to arise, we have made a privacy policy in order to notify these users.</h3>
<hr style={{color:"white", borderRadius:"10px", padding:"2px",backgroundColor:"white",border:"0px white solid"}}/>
<h3>We, in no way, track you or spy on you. We may only collect this information if you abuse our system, however, you can't be identified:</h3>
<h3 style={{lineHeight:"1"}}> Your IP address</h3>
<h3 style={{lineHeight:"1"}}> Timestamp</h3>
<h3 style={{lineHeight:"1"}}> Request Method</h3>
<h3 style={{lineHeight:"1"}}> Status Code</h3>
<h3 style={{lineHeight:"1"}}> Traffic Usage</h3>
<h3 style={{lineHeight:"1"}}> Queries</h3>
</div>
2021-12-21 19:08:36 +00:00
</div>
)
}