about.vue 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <div class="flex flex-col justify-between items-center h-full py-2">
  3. <div />
  4. <div class="flex flex-col gap-4">
  5. <p class="text-center text-2xl text-semibold">Создано выпускниками колледжа</p>
  6. <div class="flex gap-4">
  7. <PersonCard
  8. name="Вадим Морозов"
  9. nickname="@horanchikk"
  10. avatar="vadim.png"
  11. github="https://github.com/horanchikk"
  12. vk="https://vk.com/kohima"
  13. tg="https://t.me/horanchikk"
  14. />
  15. <PersonCard
  16. name="Никита Фомин"
  17. nickname="@ethosa"
  18. avatar="nikita.png"
  19. github="https://github.com/ethosa"
  20. vk="https://vk.com/akihayase"
  21. tg="https://t.me/ethosa"
  22. />
  23. </div>
  24. <p class="text-center text-2xl text-semibold">с 💖</p>
  25. </div>
  26. <div class="flex justify-center opacity-50">
  27. Версия приложения - {{ update.latestUpdate.value.version }}
  28. </div>
  29. </div>
  30. </template>
  31. <script setup lang="ts">
  32. const update = await useOTA()
  33. definePageMeta({
  34. name: 'О приложении',
  35. middleware: ['user-only'],
  36. })
  37. </script>
  38. <style scoped>
  39. </style>