feat(fe): started working on header

This commit is contained in:
Marco Cavalli 2025-02-28 17:46:06 +01:00
parent 03551436dc
commit d31f88cbd3
9 changed files with 209 additions and 20 deletions

View file

@ -0,0 +1,27 @@
<script setup lang="ts">
//ToDo:
// add logic to check if something is scheduled or not
// then switch between muted or error
const color = "error";
</script>
<template>
<v-sheet
:width="100"
border
rounded
:color="color"
>
{{ $t('header.onair') }}
</v-sheet>
</template>
<style scoped>
div {
display: flex;
justify-content: center;
align-items: center;
padding: .625rem;
}
</style>