frontend/pages/notifications.vue

30 lines
1.1 KiB
Vue
Raw Normal View History

<template>
<ClientOnly>
2024-05-12 07:26:29 +02:00
<div class="mx-auto max-w-2xl w-full">
<div class="shrink-0 p-10 h-dvh" v-if="!tokenData">
<button type="button"
class="relative block h-full w-full rounded-lg border-2 border-dashed border-dark-300 p-12 text-center">
<iconify-icon name="tabler:notification" width="3rem" height="3rem" class="mx-auto text-gray-400" />
<span class="mt-3 block text-sm font-semibold text-gray-200 max-w-56 mx-auto">Notifications
will
appear here
when you
sign in</span>
</button>
</div>
2024-05-12 09:30:02 +02:00
<LazyTimelinesTimelineScroller v-else>
<LazyHeadersGreeting />
2024-05-12 07:26:29 +02:00
<div class="rounded overflow-hidden ring-1 ring-white/10">
2024-05-12 09:30:02 +02:00
<LazyTimelinesNotifications />
2024-05-12 07:26:29 +02:00
</div>
2024-05-12 09:30:02 +02:00
</LazyTimelinesTimelineScroller>
2024-05-12 07:26:29 +02:00
</div>
</ClientOnly>
</template>
<script lang="ts" setup>
definePageMeta({
layout: "app",
});
const tokenData = useTokenData();
</script>