Files
litlyx/dashboard/pages/privacy.vue
2024-06-20 15:29:33 +02:00

122 lines
5.6 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<script lang="ts" setup>
definePageMeta({ layout: 'header' });
</script>
<template>
<div class="tutto-poppins flex flex-col gap-3 px-96 mt-20 text-[1.2rem] leading-[2rem]">
<div class="font-bold text-[2rem]">
LitLyx Privacy Policy
</div>
<div class="bg-gray-500/90 h-[1px] w-full my-6"></div>
<div>
For our beloved litlyx.com visitors and users.
This document outlines our commitment to privacy for all visitors and users.
</div>
<div>
At LitLyx Analytics, your privacy is really important. We avoid using cookies and never gather personal
information. Should you opt to register an account, only essential details are requested, and these are
shared
exclusively with crucial services required for app functionality.
</div>
<div>
LitLyx Analytics (SaaS) adheres strictly to GDPR, CCPA, PECR, and other relevant privacy standards both on
our site and within our analytics tool. We prioritize the confidentiality of your informationit belongs to
you, not us. This policy details the types of data we gather, the handling process, and your rights over
your data. We are committed to never selling your datathis has always been our stance.
</div>
<div>
For those using the LitLyx Analytics script on their sites, refer to our detailed data policy to understand
what
we collect on your behalf regarding site visitors.
</div>
<div class="font-bold mb-1 mt-4">Visitor privacy on litlyx.com includes:</div>
<ul>
<div class="ml-8"> No collection of personal details</div>
<div class="ml-8"> No browser cookie storage </div>
<div class="ml-8"> No data sharing with third parties or advertisers </div>
<div class="ml-8"> No collection or analysis of personal or behavioral trends </div>
<div class="ml-8"> No monetization of data </div>
</ul>
<div>
We deploy the LitLyx Analytics script solely to accumulate anonymous statistical data, aiming to analyze
general
website traffic trends without tracking individual users. All collected data is aggregated, and no personal
information is captured. Our live demo page showcases the accessible data, including referral sources, top
visited pages, session durations, and device specifics like type, OS, country, and browser.
</div>
<div class="font-bold mb-1 mt-4"> As a LitLyx Analytics subscriber: </div>
<div>
Our core principle is minimal data collectiononly what is essential for delivering the services you
register
for. We select trusted external providers who comply with stringent data security and privacy regulations.
Information shared with them is strictly necessary for their services, and they are contractually obliged to
maintain confidentiality and adhere to our processing directives.
</div>
<div>
Here's a practical overview
</div>
<div class="font-bold mb-1 mt-4"> Collected data and usage:</div>
<ul>
<div class="ml-8">
Email address: Required for account setup to enable login, personalization, and to send you necessary
communications like invoices or updates.
</div>
<div class="ml-8">
Persistent first-party cookie: Facilitates seamless login across sessions, improving usability. You
control cookie settings via your browser, including their deletion.
</div>
<div class="ml-8">
Data security: All collected data is securely encrypted and stored on renewable
energy-powered servers in Nuremberg, Germany, adhering to EU data privacy laws. Your data does not
leave the EU.
</div>
<div class="ml-8">
Payment processing: Handled by Stripe, with detailed privacy information
available on their site.
</div>
<div class="ml-8">
Email communication: Managed by European providers Gmail or Brevo, with disabled tracking features.
Full privacy details are available on their respective sites.
</div>
</ul>
<div class="font-bold mb-1 mt-4"> Data retention: </div>
<div>
Your data remains with us as long as your account is active or as needed to deliver services. It is used in
line
with this policy and retained to fulfill legal obligations, resolve disputes, and protect LitLyxs rights.
You
may delete your account anytime, which results in immediate and permanent data deletion.
</div>
<div class="font-bold mb-1 mt-4"> Updates and inquiries: </div>
<div>
We update this policy as necessary to stay compliant and reflect new practices. Significant changes are
communicated through our blog, social media, and direct emails.
</div>
<div>
Please reach out to us at <a href="mailto:help@litlyx.com" class=text-blue-400>help@litlyx.com</a> with any questions or concerns regarding this privacy policy
or
your rights.
</div>
<div class="font-bold mb-1 mt-4"> Last updated: May 1, 2024 </div>
</div>
</template>
<style scoped lang=scss>
.tutto-poppins * {
font-family: "Poppins";
}
</style>