safetwitch/src/views/PrivacyPageView.vue

34 lines
1.0 KiB
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-09-07 20:21:54 -04:00
<article class="prose prose-invert 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-09-07 20:21:54 -04:00
No logs are kept by SafeTwitch, however instances may log requests with their reverse-proxy.
The following data is stored in your browser from using the site, however never goes outside your browser:
<ul>
<li>Selected settings</li>
<li>Followed streamers</li>
</ul>
The following data is sent outside of your browser to SafeTwitch's backend:
<ul>
<li>Language locale</li>
</ul>
The language locale is sent to SafeTwitch's backend per request, and is used to fetch the data from Twitch in the correct language
2023-07-20 13:57:01 -04:00
<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>