29 lines
719 B
Vue
29 lines
719 B
Vue
<script setup lang="ts">
|
|
useSeoMeta({
|
|
title: 'Contact - LastWebNovel',
|
|
description: 'Get in touch with us'
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<UDashboardPanel>
|
|
<template #header>
|
|
<UDashboardNavbar title="Contact" :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>Contact Us</h1>
|
|
<p>Have a question or feedback? We'd love to hear from you.</p>
|
|
<p>Contact form coming soon...</p>
|
|
</div>
|
|
</UContainer>
|
|
</template>
|
|
</UDashboardPanel>
|
|
</template>
|