30 lines
788 B
Vue
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> |