1
0
mirror of https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git synced 2025-08-14 00:25:46 +02:00

чиним билд02

This commit is contained in:
MoonTestUse1
2025-01-02 01:41:45 +06:00
parent 6ff4ca1ab1
commit a5a742ce55
4 changed files with 147 additions and 79 deletions

View File

@@ -0,0 +1,28 @@
<template>
<div class="text-center">
<h1 class="text-4xl font-bold text-gray-900 mb-8">
Добро пожаловать в IT Form Help
</h1>
<p class="text-xl text-gray-600 mb-8">
Система поддержки и обработки IT-заявок
</p>
<div class="space-x-4">
<router-link
to="/login"
class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md text-white bg-indigo-600 hover:bg-indigo-700"
>
Войти как сотрудник
</router-link>
<router-link
to="/admin/login"
class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md text-indigo-600 bg-white hover:bg-gray-50"
>
Войти как администратор
</router-link>
</div>
</div>
</template>
<script setup lang="ts">
// Главная страница
</script>