Files
web/pages/contact.vue
T
2025-08-25 21:13:33 +07:00

61 lines
2.5 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">
<section class="web-hero web-hero-bg" aria-labelledby="hero" aria-describedby="hero-desc">
<h1 id="hero" class="font-hero">Contact Techit</h1>
<p id="hero-desc" class="font-hero-desc">You can reach me in countless ways Im on basically every social media app out there.</p>
</section>
<section class="web-section" aria-labelledby="decentralized" aria-describedby="decentralized-paragraph-1">
<h2 class="web-title" id="decentralized">Decentral&shy;ized Ways</h2>
<p id="decentralized-paragraph-1">I recommended to contact me via these given ways.</p>
<ul class="list-disc">
<li>
<p>techit@thawia.ng E-mail Address</p>
</li>
<li>
<p>@techit@furnu.org Mastodon</p>
</li>
<li>
<p>@techitwinner:matrix.org Matrix</p>
</li>
</ul>
</section>
<section class="web-section" aria-labelledby="centralized" aria-describedby="centralized-paragraph-1">
<h2 class="web-title" id="centralized">Social Media</h2>
<p id="centralized-paragraph-1">If I do not reply to messages sent via contact above, plesae kindly contact me via these social media accounts.</p>
<ul class="list-disc">
<li>
<p>@techitwinner X (Twitter)</p>
</li>
<li>
<p>@techitwinner TikTok</p>
</li>
<li>
<p>@techitwinner Instagram</p>
</li>
<li>
<p>@techitwinner Facebook</p>
</li>
<li>
<p>@thawia.ng BlueSky</p>
</li>
</ul>
</section>
</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>