Help.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <template>
  2. <main class="w-screen h-screen bg-yellow-50 flex flex-col justify-between overflow-x-hidden">
  3. <Banner />
  4. <Header class="hidden" />
  5. <section class="flex flex-col gap-4">
  6. <h1 class="text-5xl font-medium">
  7. Help &amp; Support
  8. </h1>
  9. <Banner />
  10. <div class="p-3 bg-purple-300">
  11. <h3 class="text-xl font-medium">
  12. 3% House Edge Breakdown
  13. </h3>
  14. <ul class="pl-10 list-disc">
  15. <li>1.0% paid out to Investors</li>
  16. <li>1.0% paid out to App Developer(s)</li>
  17. <li>0.5% paid out to Promoters</li>
  18. <li>0.5% paid out to GamesDAO Treasury</li>
  19. </ul>
  20. </div>
  21. </section>
  22. <Footer />
  23. </main>
  24. </template>
  25. <script>
  26. export default {
  27. data: () => ({
  28. //
  29. }),
  30. computed: {
  31. //
  32. },
  33. methods: {
  34. //
  35. },
  36. created: function () {
  37. //
  38. },
  39. mounted: function () {
  40. //
  41. },
  42. }
  43. </script>