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

34 lines
1.1 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<main>
<article class="article">
<h1>Contact Techit</h1>
<p>
You can reach me in countless ways Im on basically every social media app out there.
</p>
<ul>
<li>E-mail: <a href="mailto:techit@dailitation.xyz">techit@dailitation.xyz</a> (PGP/GPG available in footer section)</li>
<li>Matrix: @techitwinner:matrix.org</li>
<li>Facebook: Techit Thawiang (@techitwinner)</li>
<li>Instagram: Techit Thawiang (@techitwinner)</li>
<li>Twitter: Techit Thawiang (@techitwinner)</li>
<li>TikTok: Techit Thawiang (@techitwinner)</li>
<li>Bluesky: Techit Thawiang (@thawia.ng)</li>
</ul>
</article>
</main>
</template>
<script setup>
const TITLE = "Contact"
const DESC = "How to contact Techit"
useHead({
title: TITLE,
meta: [
{ name: 'description', content: DESC },
{ property: 'og:title', content: TITLE },
{ property: 'og:description', content: DESC },
{ property: 'og:type', content: 'website' }
]
})
</script>