33 lines
884 B
Vue
33 lines
884 B
Vue
<script setup lang="ts">
|
|
useSeoMeta({
|
|
title: 'Announcements - LastWebNovel',
|
|
description: 'Latest announcements and updates'
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<UDashboardPanel>
|
|
<template #header>
|
|
<UDashboardNavbar title="Announcements" :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-megaphone" class="size-12 mx-auto mb-4 text-gray-400" />
|
|
<h3 class="text-lg font-semibold mb-2">
|
|
Announcements
|
|
</h3>
|
|
<p class="text-gray-600 dark:text-gray-400">
|
|
Check back soon for important announcements
|
|
</p>
|
|
</div>
|
|
</UContainer>
|
|
</template>
|
|
</UDashboardPanel>
|
|
</template>
|