2024-05-01 10:40:33 +02:00
|
|
|
<template>
|
|
|
|
|
<ClientOnly>
|
2024-05-12 07:26:29 +02:00
|
|
|
<div class="mx-auto max-w-2xl w-full">
|
2024-05-01 10:40:33 +02:00
|
|
|
<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">
|
|
|
|
|
<Icon name="tabler:notification" class="mx-auto h-12 w-12 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>
|
|
|
|
|
<TimelinesTimelineScroller v-else>
|
2024-05-12 07:26:29 +02:00
|
|
|
<HeadersGreeting />
|
|
|
|
|
<div class="rounded overflow-hidden ring-1 ring-white/10">
|
|
|
|
|
<TimelinesNotifications />
|
|
|
|
|
</div>
|
2024-05-01 10:40:33 +02:00
|
|
|
</TimelinesTimelineScroller>
|
2024-05-12 07:26:29 +02:00
|
|
|
</div>
|
2024-05-01 10:40:33 +02:00
|
|
|
</ClientOnly>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
|
definePageMeta({
|
|
|
|
|
layout: "app",
|
|
|
|
|
});
|
|
|
|
|
const tokenData = useTokenData();
|
|
|
|
|
</script>
|