safetwitch/src/views/PrivacyPageView.vue

25 lines
790 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-03-18 13:49:02 -04:00
<article
2023-04-11 20:58:31 -04:00
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.
<br><br>
No logs are kept. That's it. Nothing is stored from you interacting with the site.
2023-07-19 09:08:24 -04:00
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
2023-04-11 20:58:31 -04:00
<br><br>
2023-03-18 13:49:02 -04:00
2023-07-03 16:43:58 -04:00
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>