29 lines
798 B
Vue
29 lines
798 B
Vue
<script setup lang="ts">
|
|
useSeoMeta({
|
|
title: 'Advertise - LastWebNovel',
|
|
description: 'Advertising opportunities on LastWebNovel'
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<UDashboardPanel>
|
|
<template #header>
|
|
<UDashboardNavbar title="Advertise With 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>Advertising Opportunities</h1>
|
|
<p>Interested in advertising with LastWebNovel? We have great opportunities available.</p>
|
|
<p>More information coming soon...</p>
|
|
</div>
|
|
</UContainer>
|
|
</template>
|
|
</UDashboardPanel>
|
|
</template>
|