test publish
Some checks failed
Deploy / deploy (push) Has been cancelled
Deploy / publish-web (push) Successful in 1m43s
Deploy / publish-tauri (push) Has been cancelled

This commit is contained in:
2025-12-22 19:23:06 +06:00
parent e3d0106d8f
commit 76f0ec74b5
27 changed files with 2123 additions and 1344 deletions

View File

@@ -1,7 +1,7 @@
<template>
<div v-auto-animate class="grid grid-cols-2 h-screen">
<div class="grid grid-cols-2 h-screen">
<div class="flex flex-col shadow-xl shadow-surface-950 overflow-y-hidden">
<AppHeader title="Шальные сиськи 18+">
<AppHeader title="Сиськи отвалились">
<template #right>
<PrimeButtonGroup class="ml-auto">
<PrimeButton
@@ -23,15 +23,20 @@
</div>
</div>
<slot />
<div class="overflow-y-auto">
<slot />
</div>
</div>
<PrimeBadge class="fixed top-3 right-3" severity="success" />
<div class="fixed top-3 right-3 inline-flex items-center gap-3">
<PrimeBadge v-if="isTauri" class="opacity-50" severity="secondary" :value="version" size="small" />
<PrimeBadge :severity="connected ? 'success' : 'danger' " />
</div>
</template>
<script setup lang="ts">
const { clients, inputMuted, toggleInput, outputMuted, toggleOutput } = useApp()
const { connect } = useSignaling()
const { clients, inputMuted, toggleInput, outputMuted, toggleOutput, version, isTauri } = useApp()
const { connect, connected } = useSignaling()
const route = useRoute()