cbprivacy.vue 952 B

1234567891011121314151617181920212223242526272829
  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 (25 August 2022) Circular Bells does not collect any personal data at all, neither accesses any sensitive data on your device.</p>
  8. <p><strong>This may change in the future, and you will be informed</strong></p>
  9. <p>&nbsp;</p>
  10. </article>
  11. </div>
  12. </NuxtLayout></template>
  13. <script lang="ts" setup>
  14. definePageMeta({
  15. layout: false
  16. });
  17. const headline = "Circular Bells privacy policy";
  18. const tagline = "";
  19. const title = `${headline} ••• Andrea Franceschini, PhD`;
  20. useState('pageClasses', () => ['cbprivacy', 'page']);
  21. useHead({
  22. title
  23. });
  24. </script>