1
0
mirror of https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git synced 2025-08-14 00:25:46 +02:00
Files
AdministrationItDepartmens/frontend/src/components/Header.vue
MoonTestUse1 1bdddbb98f 6
2024-12-28 06:02:19 +06:00

26 lines
1.0 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<header class="bg-slate-800 text-white py-3">
<div class="container mx-auto px-4">
<div class="flex flex-col sm:flex-row justify-between items-center gap-2">
<div class="flex items-center space-x-3">
<Building2Icon :size="28" class="text-blue-400" />
<div class="text-center sm:text-left">
<h1 class="text-lg sm:text-xl font-semibold">Администрация КАО</h1>
<p class="text-xs sm:text-sm text-slate-300">Портал технической поддержки</p>
</div>
</div>
<div class="flex items-center space-x-2">
<PhoneIcon :size="18" class="text-blue-400" />
<div class="text-center sm:text-left">
<p class="text-xs text-slate-300">Поддержка:</p>
<p class="text-sm font-semibold">8 (800) 123-45-67</p>
</div>
</div>
</div>
</div>
</header>
</template>
<script setup lang="ts">
import { Building2Icon, PhoneIcon } from 'lucide-vue-next';
</script>