import styles from '../styles/Privacy.module.css' (async () => { let ipreq = await fetch('/api/ip', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ msg: 'get_ip' }) }) let ip; if (ipreq.ok) { ipreq.text().then(i => {ip = i}); }; })(); export default function Privacy() { return ( <>

Welcome to TheRed.SH!

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.


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:

᛫ Timestamp

᛫ Request Method

᛫ Status Code

᛫ Queries

These are the ONLY things we collect. You are unidentifiable. This is done in order to protect our service from abuse, as mentioned above, as well as patching exploits.

{/* Your IP: { }, if you do not trust us, use a VPN/Proxy! */}
) }