2023-01-05 08:47:58 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
definePageMeta({
|
|
|
|
middleware: 'auth',
|
|
|
|
})
|
|
|
|
|
|
|
|
const { t } = useI18n()
|
|
|
|
|
2023-04-01 12:14:12 +01:00
|
|
|
useHead({
|
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">
|
|
|
|
<span>{{ $t('settings.notifications.notifications.label') }}</span>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<h3 px6 py4 mt2 font-bold text-xl flex="~ gap-1" items-center>
|
|
|
|
{{ $t('settings.notifications.notifications.label') }}
|
|
|
|
</h3>
|
|
|
|
<p text-4xl text-center>
|
2023-02-01 17:01:14 +00:00
|
|
|
<span sr-only>{{ $t('settings.notifications.under_construction') }}</span> 🚧
|
2023-01-05 08:47:58 +00:00
|
|
|
</p>
|
|
|
|
</MainContent>
|
|
|
|
</template>
|