index/pages/index.vue

50 lines
1.0 KiB
Vue

<script setup lang="ts">
const meta = {
title: 'Enderman',
description:
'A software engineer, a malware enthusiast and, most importantly, a weird tall creature.',
image: 'https://enderman.ch/images/logo.png',
url: 'https://enderman.ch/',
}
useSeoMeta({
title: meta.title,
description: meta.description,
ogTitle: meta.title,
ogDescription: meta.description,
ogImage: meta.image,
ogUrl: meta.url,
ogType: 'website',
twitterTitle: meta.title,
twitterDescription: meta.description,
twitterImage: meta.image,
twitterCard: 'summary',
})
useHead({
titleTemplate: 'Enderman',
htmlAttrs: {
lang: 'en',
},
link: [
{
rel: 'icon',
type: 'image/x-icon',
href: '/favicon.ico',
},
],
})
</script>
<template>
<p>
A software engineer, a malware enthusiast and most importantly, a weird tall
creature.
<ClientOnly fallback-tag="span" fallback="TikTok">
<FontAwesomeIcon icon="fa-brands fa-tiktok" />
</ClientOnly>
</p>
</template>
<style scoped lang="scss"></style>