2023-01-05 08:47:58 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
definePageMeta({
|
|
|
|
middleware: 'auth',
|
|
|
|
})
|
|
|
|
|
|
|
|
const { t } = useI18n()
|
|
|
|
|
2023-04-16 19:33:51 +00:00
|
|
|
useHydratedHead({
|
2023-01-05 08:47:58 +00:00
|
|
|
title: () => `${t('settings.notifications.notifications.label')} | ${t('settings.notifications.label')} | ${t('nav.settings')}`,
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<MainContent back>
|
|
|
|
<template #title>
|
|
|
|
<div text-lg font-bold flex items-center gap-2 @click="$scrollToTop">
|
2023-11-28 10:54:22 +00:00
|
|
|
<div i-ri:test-tube-line />
|
2024-02-24 18:24:19 +00:00
|
|
|
<span>{{ $t('settings.notifications.notifications.label') }}</span>
|
2023-01-05 08:47:58 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
2023-11-28 10:54:22 +00:00
|
|
|
<div text-center mt-10>
|
|
|
|
<h1 text-4xl>
|
2024-02-24 18:24:19 +00:00
|
|
|
<span sr-only>{{ $t('settings.notifications.under_construction') }}</span>
|
2023-11-28 10:54:22 +00:00
|
|
|
🚧
|
|
|
|
</h1>
|
|
|
|
<h3 text-xl>
|
2024-02-24 18:24:19 +00:00
|
|
|
{{ $t('settings.notifications.notifications.label') }}
|
2023-11-28 10:54:22 +00:00
|
|
|
</h3>
|
|
|
|
</div>
|
2023-01-05 08:47:58 +00:00
|
|
|
</MainContent>
|
|
|
|
</template>
|