tiers.vue 921 B

12345678910111213141516171819202122232425262728293031323334
  1. <script setup lang="ts">
  2. useHead({
  3. title: `Tiers — Hush Your Money`,
  4. meta: [
  5. { name: 'description', content: `Hush Your Money makes spending safu.` }
  6. ],
  7. })
  8. /* Initialize stores. */
  9. import { useSystemStore } from '@/stores/system'
  10. const System = useSystemStore()
  11. // onMounted(() => {
  12. // console.log('Mounted!')
  13. // // Now it's safe to perform setup operations.
  14. // })
  15. // onBeforeUnmount(() => {
  16. // console.log('Before Unmount!')
  17. // // Now is the time to perform all cleanup operations.
  18. // })
  19. </script>
  20. <template>
  21. <main class="max-w-5xl mx-auto py-5 flex flex-col gap-4">
  22. <h1 class="text-5xl font-medium">
  23. Tiers
  24. </h1>
  25. <p>
  26. 72 tiers are available to offer the greatest anonymity protection to <NuxtLink to="/help/guests" class="text-blue-500 font-normal hover:underline">Club Guests</NuxtLink>.
  27. </p>
  28. </main>
  29. </template>