index.vue 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <template>
  2. <main class="p-5 flex flex-col">
  3. <div class="bg-pink-500 rounded-xl p-5 border-4 border-pink-700">
  4. <h1 class="text-2xl text-gray-200">CHECK OUR API STATUS &amp; HISTORY</h1>
  5. <a class="text-2xl text-gray-200 font-bold" href="https://status.apecs.dev" target="_blank">
  6. https://status.apecs.dev
  7. </a>
  8. </div>
  9. <!-- Page Section -->
  10. <section class="grid grid-cols-3 gap-10 py-10">
  11. <div class="bg-rose-200 rounded-xl p-5 border-4 border-rose-400">
  12. <h1 class="text-2xl font-bold text-center text-rose-700">
  13. FULCRUM<small>.apecs.dev</small>
  14. </h1>
  15. <div class="flex gap-2 items-center">
  16. <span class="text-xs uppercase">Status</span>
  17. <span class="text-sm font-medium text-gray-500">Disabled</span>
  18. </div>
  19. <div class="flex gap-2 items-center">
  20. <span class="text-xs uppercase">Uptime</span>
  21. <span class="text-sm font-medium text-gray-500">n/a</span>
  22. </div>
  23. </div>
  24. <div class="bg-rose-200 rounded-xl p-5 border-4 border-rose-400">
  25. <h1 class="text-2xl font-bold text-center text-rose-700">
  26. ROSTRUM<small>.apecs.dev</small>
  27. </h1>
  28. <div class="flex gap-2 items-center">
  29. <span class="text-xs uppercase">Status</span>
  30. <span class="text-sm font-medium text-green-700">Synching</span>
  31. </div>
  32. <div class="flex gap-2 items-center">
  33. <span class="text-xs uppercase">Uptime</span>
  34. <span class="text-sm font-medium text-gray-500">n/a</span>
  35. </div>
  36. </div>
  37. <div class="bg-rose-200 rounded-xl p-5 border-4 border-rose-400">
  38. <h1 class="text-2xl font-bold text-center text-rose-700">
  39. BITDB<small>.fountainhead.cash</small>
  40. </h1>
  41. <div class="flex gap-2 items-center">
  42. <span class="text-xs uppercase">Status</span>
  43. <span class="text-sm font-medium text-gray-500">Disabled</span>
  44. </div>
  45. <div class="flex gap-2 items-center">
  46. <span class="text-xs uppercase">Uptime</span>
  47. <span class="text-sm font-medium text-gray-500">n/a</span>
  48. </div>
  49. </div>
  50. </section>
  51. </main>
  52. </template>
  53. <script>
  54. export default {
  55. data: () => {
  56. return {
  57. //
  58. }
  59. },
  60. head: () => ({
  61. title: 'Statistics — APECS Dev',
  62. meta: [
  63. {
  64. hid: 'description', // `vmid` for it as it will not work
  65. name: 'description',
  66. content: `Statistics`
  67. }
  68. ]
  69. }),
  70. created: async function () {
  71. /* Retrieve session. */
  72. // const session = await this.hasSession()
  73. // .catch(err => console.error('Session Error:', err))
  74. /* Validate session. */
  75. // if (!session) {
  76. // return
  77. // }
  78. },
  79. mounted: function () {
  80. //
  81. },
  82. }
  83. </script>