30 lines
878 B
Vue
30 lines
878 B
Vue
<script setup lang="ts">
|
|
useSeoMeta({
|
|
title: 'MDLists - LastWebNovel',
|
|
description: 'Your collection lists and reading lists'
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<UDashboardPanel>
|
|
<template #header>
|
|
<UDashboardNavbar title="MDLists" :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-list" class="size-12 mx-auto mb-4 text-gray-400" />
|
|
<h3 class="text-lg font-semibold mb-2">My Lists</h3>
|
|
<p class="text-gray-600 dark:text-gray-400">Create and manage your reading lists</p>
|
|
<p class="text-sm text-gray-500 mt-4">Coming soon</p>
|
|
</div>
|
|
</UContainer>
|
|
</template>
|
|
</UDashboardPanel>
|
|
</template>
|