sponsors.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <main class="">
  3. <section class="max-w-7xl mx-auto py-12 px-4 divide-y divide-gray-200 sm:px-6 lg:py-16 lg:px-8">
  4. <h2 class="text-2xl">
  5. We are currently seeking ALL levels of Sponsorship
  6. </h2>
  7. <h3 class="xl">
  8. Please visit <a href="https://pif.cash" target="_blank" class="text-blue-500 font-medium hover:underline">PIF.cash</a> for more information on how you can support our Team.
  9. </h3>
  10. </section>
  11. </main>
  12. </template>
  13. <script>
  14. export default {
  15. data: () => ({
  16. title: null,
  17. description: null,
  18. }),
  19. head: () => ({
  20. title: 'Sponsors — APECS Dev',
  21. meta: [
  22. {
  23. hid: 'description', // `vmid` for it as it will not work
  24. name: 'description',
  25. content: 'Meet our Sponsors.'
  26. }
  27. ]
  28. }),
  29. created: function () {
  30. /* Set page title. */
  31. this.title = `Frequently Asked Questions`
  32. /* Set page description. */
  33. this.description = `We know you have lots of questions, so we've collected <span class="text-gray-100 font-medium">TOP DEVS</span> from all over crypto to give you the right answers.`
  34. },
  35. mounted: function () {
  36. //
  37. },
  38. }
  39. </script>