readded provacy policy

This commit is contained in:
Clevetop 2024-07-25 21:37:22 +10:00
parent 2807918e2c
commit eb616ab42f
4 changed files with 73 additions and 17 deletions

16
pages/blog/[...slug].vue Normal file
View file

@ -0,0 +1,16 @@
<script>
export default {
async asyncData({ $content, params }) {
const post = await $content('blog', params.slug).fetch()
return { post }
}
}
</script>
<template>
<main>
<ContentDoc />
</main>
</template>