123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <template>
- <div class="flex flex-col justify-between items-center h-full py-2">
- <div />
- <div class="flex flex-col gap-4">
- <p class="text-center text-2xl text-semibold">Создано выпускниками колледжа</p>
- <div class="flex gap-4">
- <PersonCard
- name="Вадим Морозов"
- nickname="@horanchikk"
- avatar="vadim.png"
- github="https://github.com/horanchikk"
- vk="https://vk.com/kohima"
- tg="https://t.me/horanchikk"
- />
- <PersonCard
- name="Никита Фомин"
- nickname="@ethosa"
- avatar="nikita.png"
- github="https://github.com/ethosa"
- vk="https://vk.com/akihayase"
- tg="https://t.me/ethosa"
- />
- </div>
- <p class="text-center text-2xl text-semibold">с 💖</p>
- </div>
- <div class="flex flex-col justify-center gap-1">
- <p class="opacity-50" v-text="`Версия приложения - ${APP_VERSION}`" />
- </div>
- </div>
- </template>
- <script setup lang="ts">
- const { $config: { public: { APP_VERSION } } } = useNuxtApp()
- definePageMeta({
- name: 'О приложении',
- middleware: ['user-only'],
- })
- // test
- </script>
- <style scoped>
- </style>
|