Files
web/pages/collections.vue
T
Techit Thawiang 4b81da66a3 Added basic SEO
2025-06-29 14:06:36 +07:00

30 lines
788 B
Vue

<template>
<main>
<article class="article">
<h1>Techit's Collections</h1>
<p>
Collections of interesting tools.
</p>
<ul>
<li>
<a href="https://github.com/Tyrrrz/YoutubeDownloader"><b>YoutubeDownloader</b>: Downloads videos and playlists from YouTube</a>
</li>
</ul>
</article>
</main>
</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>