lastwebnovel-app/app/pages/oldbak/about.vue
2026-04-11 22:55:16 +02:00

29 lines
739 B
Vue

<script setup lang="ts">
useSeoMeta({
title: 'About Us - LastWebNovel',
description: 'Learn more about LastWebNovel'
})
</script>
<template>
<UDashboardPanel>
<template #header>
<UDashboardNavbar title="About Us" :ui="{ right: 'gap-3' }">
<template #leading>
<UDashboardSidebarCollapse />
</template>
</UDashboardNavbar>
</template>
<template #body>
<UContainer class="py-8">
<div class="prose dark:prose-invert max-w-none">
<h1>About LastWebNovel</h1>
<p>LastWebNovel is a platform dedicated to web novel readers and authors.</p>
<p>Coming soon...</p>
</div>
</UContainer>
</template>
</UDashboardPanel>
</template>