1234567891011121314151617181920212223242526272829 |
- <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>Circular Bells does not collect personal data without your consent.</p>
- <p>At the moment of writing (25 August 2022) Circular Bells does not collect any personal data at all, neither accesses any sensitive data on your device.</p>
- <p><strong>This may change in the future, and you will be informed</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>
|