12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template><NuxtLayout name="default">
- <template #headline>{{ headline }}</template>
- <template #tagline>{{ tagline }}</template>
- <div class="container mx-auto max-w-screen-lg sm:px-12 px-2 prose">
- <article class="body grid grid-cols-1 gap-x-12 gap-y-0">
- <p><strong>🇬🇧 English</strong></p>
- <p>Circular Bells does not collect personal data without your consent.</p>
- <p>At the moment of writing (11 October 2023) Circular Bells does not collect any personal data at all and has never done in the past.
- Circular Bells does not access any sensitive data on your device either.</p>
- <p><strong>This may change in the future, and you will be informed if this happens.</strong></p>
- <p> </p>
- <p><strong>🇮🇹 Italiano</strong></p>
- <p>Circular Bells non raccoglie dati personali senza il tuo consenso.</p>
- <p>Al momento della scrittura (11 Ottobre 2023) Circular Bells non raccoglie alcun dato personale né l'ha mai fatto in bassato.
- Circular Bells non ha nemmeno accesso ad alcun dato sensibile sul tuo dispositivo.</p>
- <p><strong>Questo potrebbe cambiare in futuro e sarai avvisatə.</strong></p>
- <p> </p>
- <p><strong>🇪🇸 Español</strong></p>
- <p>Circular Bells no recoge datos personales sin su autorización.</p>
- <p>En el momento de escribir este (11 de octubre de 2023), Circular Bells no recopila ningún dato personal y nunca lo ha hecho en el pasado.
- Circular Bells tampoco accede a ningún dato confidencial de su dispositivo.</p>
- <p><strong>Esto puede cambiar en el futuro y se le informará si esto sucede.</strong></p>
- <p> </p>
- </article>
- </div>
- </NuxtLayout></template>
- <script lang="ts" setup>
- definePageMeta({
- layout: false
- });
- const headline = "Circular Bells privacy policy";
- const tagline = "";
- const title = `${headline} ••• Andrea Franceschini, PhD`;
- useState('pageClasses', () => ['cbprivacy', 'page']);
- useHead({
- title
- });
- </script>
|