cbprivacy.vue 1.0 KB

123456789101112131415161718192021222324252627282930
  1. <template><NuxtLayout name="default">
  2. <template #headline>{{ headline }}</template>
  3. <template #tagline>{{ tagline }}</template>
  4. <div class="container mx-auto max-w-screen-lg sm:px-12 px-2 prose">
  5. <article class="body grid grid-cols-1 gap-x-12 gap-y-0">
  6. <p>Circular Bells does not collect personal data without your consent.</p>
  7. <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.
  8. Circular Bells does not access any sensitive data on your device either.</p>
  9. <p><strong>This may change in the future, and you will be informed if this happens.</strong></p>
  10. <p>&nbsp;</p>
  11. </article>
  12. </div>
  13. </NuxtLayout></template>
  14. <script lang="ts" setup>
  15. definePageMeta({
  16. layout: false
  17. });
  18. const headline = "Circular Bells privacy policy";
  19. const tagline = "";
  20. const title = `${headline} ••• Andrea Franceschini, PhD`;
  21. useState('pageClasses', () => ['cbprivacy', 'page']);
  22. useHead({
  23. title
  24. });
  25. </script>