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

29 lines
794 B
Vue

<script setup lang="ts">
useSeoMeta({
title: 'Community Guidelines - LastWebNovel',
description: 'Our community guidelines and policies'
})
</script>
<template>
<UDashboardPanel>
<template #header>
<UDashboardNavbar title="Community Guidelines" :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>Community Guidelines</h1>
<p>Our community guidelines help maintain a friendly and respectful environment for all users.</p>
<p>Coming soon...</p>
</div>
</UContainer>
</template>
</UDashboardPanel>
</template>