safetwitch/src/views/PrivacyPageView.vue

25 lines
791 B
Vue
Raw Normal View History

2023-03-07 17:55:05 -05:00
<script lang="ts">
2023-03-18 13:49:02 -04:00
export default {}
2023-03-07 17:55:05 -05:00
</script>
<template>
2023-07-20 13:57:01 -04:00
<article class="prose prose-invert border-2 bg-ctp-crust rounded-lg mx-auto p-8 pt-10 text-white">
2023-03-18 13:49:02 -04:00
<h1>Privacy Policy</h1>
<p>
2023-04-11 20:58:31 -04:00
It's.... kind of empty here.
2023-07-20 13:57:01 -04:00
<br /><br />
2023-03-18 13:49:02 -04:00
2023-07-20 13:57:01 -04:00
No logs are kept. That's it. Nothing is stored from you interacting with the site. Streamers
you follow are stored in your browser's LocalStorage, but never reaches the server. Selected
language when using SafeTwitch is sent to the server among every request in order to send the
data back in the correct language
<br /><br />
Non-official instances are under their own privacy policy, as they may host SafeTwitch with
different practices that may log requests
2023-04-11 20:58:31 -04:00
</p>
2023-03-18 13:49:02 -04:00
</article>
</template>