33 lines
887 B
Vue
33 lines
887 B
Vue
<script setup lang="ts">
|
|
useSeoMeta({
|
|
title: 'Follows Updates - LastWebNovel',
|
|
description: 'Updates from your followed novels'
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<UDashboardPanel>
|
|
<template #header>
|
|
<UDashboardNavbar title="My Updates" :ui="{ right: 'gap-3' }">
|
|
<template #leading>
|
|
<UDashboardSidebarCollapse />
|
|
</template>
|
|
</UDashboardNavbar>
|
|
</template>
|
|
|
|
<template #body>
|
|
<UContainer class="py-8">
|
|
<div class="text-center py-12">
|
|
<UIcon name="i-lucide-bell" class="size-12 mx-auto mb-4 text-gray-400" />
|
|
<h3 class="text-lg font-semibold mb-2">
|
|
Follow Updates
|
|
</h3>
|
|
<p class="text-gray-600 dark:text-gray-400">
|
|
Updates from your followed novels will appear here
|
|
</p>
|
|
</div>
|
|
</UContainer>
|
|
</template>
|
|
</UDashboardPanel>
|
|
</template>
|