Announcement.vue 593 B

1234567891011121314151617181920212223
  1. <template>
  2. <div class="bg-error flex justify-between">
  3. <span
  4. class="flex py-2 px-4 transition justify-center group relative items-center"
  5. >
  6. <i class="mr-2 material-icons">info_outline</i>
  7. <span class="text-secondaryDark">
  8. <span class="md:hidden">
  9. {{ t("helpers.offline_short") }}
  10. </span>
  11. <span class="hidden md:inline">
  12. {{ t("helpers.offline") }}
  13. </span>
  14. </span>
  15. </span>
  16. </div>
  17. </template>
  18. <script setup lang="ts">
  19. import { useI18n } from "~/helpers/utils/composables"
  20. const t = useI18n()
  21. </script>