forked from MT3003-ST23/mt3003-st23.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.vue
More file actions
27 lines (25 loc) · 738 Bytes
/
Copy pathapp.vue
File metadata and controls
27 lines (25 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<template>
<SiteHeader />
<div class="page-section prose prose-config ">
<NuxtPage />
</div>
<SiteFooter />
</template>
<!-- ./app.vue -->
<script setup>
useHead({
title: "Nuxt 3 + Content v2 Starter",
meta: [
{ name: 'description', content: 'Nuxt 3 + Content v2 Starter built by Miracleio' }
],
})
</script>
<style scoped>
.prose-config {
@apply prose-headings:my-[0.75rem] prose-h1:my-[1.5rem] prose-img:mt-0 prose-img:mb-0
prose-pre:bg-zinc-100 prose-pre:md:whitespace-normal
first-of-type:prose-h1:mt-0 prose-code:before:content-none
prose-code:after:content-none prose-code:bg-zinc-100 prose-code:p-[3px]
prose-code:rounded prose-h2:text-3xl prose-h3:text-2xl prose-h4:text-xl
}
</style>