42 lines
821 B
Vue
42 lines
821 B
Vue
<script setup lang="ts">
|
|
const meta = {
|
|
title: 'About',
|
|
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({
|
|
title: 'About',
|
|
htmlAttrs: {
|
|
lang: 'en',
|
|
},
|
|
link: [
|
|
{
|
|
rel: 'icon',
|
|
type: 'image/x-icon',
|
|
href: '/favicon.ico',
|
|
},
|
|
],
|
|
})
|
|
</script>
|
|
|
|
<template><p>About page!</p></template>
|
|
|
|
<style scoped lang="scss"></style>
|