0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch.git synced 2024-12-22 05:12:57 -05:00

add privacy policy

This commit is contained in:
dragongoose 2023-03-07 17:55:05 -05:00
parent f1c771282d
commit 0d71fe7cff

View file

@ -0,0 +1,26 @@
<script lang="ts">
export default {};
</script>
<template>
<article class="prose prose-invert border-2 border-ctp-peach max-w-prose bg-ctp-crust rounded-lg mx-auto p-8 pt-10 text-white">
<h1>Privacy Policy</h1>
<p>For the oficial instance, no logs are kept except for
when an error is met that affects the user is encounered.
An example of this is when data retrieval fails when a user
requests. No identifying information is kept except for the
time of request. below is an example of this data</p>
<code class="">
{
"endpoint":"/api/users/chibidoki",
"level":"warn","message":
"No element found for selector: li.InjectLayout-sc-1i43xsx-0:nth-child(2) > a:nth-child(1) > div:nth-child(1) > div:nth-child(1) > p:nth-child(1)",
"origin":"http://localhost:5173",
"reqId":"fed6f1f6-403f-4d6a-9943-3d07ea7bf9bb",
"timestamp":"2023-03-07T22:42:37.982Z"
}
</code>
</article>
</template>