0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch.git synced 2025-01-08 13:50:04 -05:00
safetwitch/src/views/PrivacyPageView.vue
2023-09-27 16:44:52 -04:00

33 lines
1 KiB
Vue

<script lang="ts">
export default {}
</script>
<template>
<article class="prose prose-invert bg-crust rounded-lg mx-auto p-8 pt-10 text-contrast">
<h1>Privacy Policy</h1>
<p>
It's.... kind of empty here.
<br /><br />
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
<br /><br />
Non-official instances are under their own privacy policy, as they may host SafeTwitch with
different practices that may log requests
</p>
</article>
</template>