Added basic SEO

This commit is contained in:
Techit Thawiang
2025-06-29 14:06:36 +07:00
parent af1b5b9b83
commit 4b81da66a3
4 changed files with 64 additions and 4 deletions
+16 -1
View File
@@ -12,4 +12,19 @@
</ul>
</article>
</main>
</template>
</template>
<script setup>
const TITLE = "Collections"
const DESC = "Techit's personal-public collections"
useHead({
title: TITLE,
meta: [
{ name: 'description', content: DESC },
{ property: 'og:title', content: TITLE },
{ property: 'og:description', content: DESC },
{ property: 'og:type', content: 'website' }
]
})
</script>