elk/pages/settings/notifications/notifications.vue

28 lines
750 B
Vue
Raw Normal View History

<script setup lang="ts">
definePageMeta({
middleware: 'auth',
})
2023-01-09 21:20:26 +01:00
const { $t } = useFluent()
useHeadFixed({
2023-01-09 21:20:26 +01: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-01-09 21:20:26 +01:00
<span>{{ $t('settings_notifications_notifications_label') }}</span>
</div>
</template>
<h3 px6 py4 mt2 font-bold text-xl flex="~ gap-1" items-center>
2023-01-09 21:20:26 +01:00
{{ $t('settings_notifications_notifications_label') }}
</h3>
<p text-4xl text-center>
<span sr-only>Under construction</span> 🚧
</p>
</MainContent>
</template>