Future.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <script setup>
  2. import { ref } from 'vue'
  3. /* Initialize stores. */
  4. import { useSystemStore } from '@/stores/system'
  5. /* Initialize System. */
  6. const System = useSystemStore()
  7. defineProps({
  8. msg: String,
  9. })
  10. // onMounted(() => {
  11. // console.log('Mounted!')
  12. // // Now it's safe to perform setup operations.
  13. // })
  14. // onBeforeUnmount(() => {
  15. // console.log('Before Unmount!')
  16. // // Now is the time to perform all cleanup operations.
  17. // })
  18. const count = ref(0)
  19. </script>
  20. <template>
  21. <main class="flex flex-col gap-5">
  22. <h2 class="text-rose-900 text-3xl font-bold text-center">
  23. 1 NEXA = 1 Penny
  24. </h2>
  25. <p>
  26. How long will it take for <span class="text-lg text-rose-900 font-medium">1 Million NEXA</span> to reach <span class="text-lg text-rose-900 font-medium">$10,000 USD?</span>
  27. It's the equivalent of when Bitcoin (BTC) 1st reached $10k back in 2017.
  28. </p>
  29. <h4 class="text-lg font-medium italic">
  30. Don't forget to sign up for early-access to the Wally Prediction Market
  31. <svg class="w-10 h-10 text-rose-900" fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
  32. <path stroke-linecap="round" stroke-linejoin="round" d="M9.813 15.904L9 18.75l-.813-2.846a4.5 4.5 0 00-3.09-3.09L2.25 12l2.846-.813a4.5 4.5 0 003.09-3.09L9 5.25l.813 2.846a4.5 4.5 0 003.09 3.09L15.75 12l-2.846.813a4.5 4.5 0 00-3.09 3.09zM18.259 8.715L18 9.75l-.259-1.035a3.375 3.375 0 00-2.455-2.456L14.25 6l1.036-.259a3.375 3.375 0 002.455-2.456L18 2.25l.259 1.035a3.375 3.375 0 002.456 2.456L21.75 6l-1.035.259a3.375 3.375 0 00-2.456 2.456zM16.894 20.567L16.5 21.75l-.394-1.183a2.25 2.25 0 00-1.423-1.423L13.5 18.75l1.183-.394a2.25 2.25 0 001.423-1.423l.394-1.183.394 1.183a2.25 2.25 0 001.423 1.423l1.183.394-1.183.394a2.25 2.25 0 00-1.423 1.423z"></path>
  33. </svg>
  34. </h4>
  35. </main>
  36. </template>