safetwitch/src/views/PrivacyPageView.vue

24 lines
644 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.
Streamers you follow are stored in your browser's LocalStorage, but never reaches the server
<br><br>
2023-03-18 13:49:02 -04:00
2023-04-11 20:58:31 -04:00
Non-offial instances are under their own privacy policy, as they may host SafeTwitch with different practices that may log requests
</p>
2023-03-18 13:49:02 -04:00
</article>
</template>