about.vue 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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 flex-col justify-center gap-1">
  27. <p class="opacity-50" v-text="`Версия приложения - ${APP_VERSION}`" />
  28. </div>
  29. </div>
  30. </template>
  31. <script setup lang="ts">
  32. const { $config: { public: { APP_VERSION } } } = useNuxtApp()
  33. definePageMeta({
  34. name: 'О приложении',
  35. middleware: ['user-only'],
  36. })
  37. // test
  38. </script>
  39. <style scoped>
  40. </style>