Dockerized the application, fixed fonts, improved SEO, upgraded to Nuxt 3.8.2
This commit is contained in:
@@ -37,6 +37,8 @@ useHead({
|
||||
},
|
||||
],
|
||||
})
|
||||
|
||||
defineRobotMeta()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
@@ -73,5 +75,15 @@ useHead({
|
||||
doesn't help with adhering to deadlines at all. However, you can always
|
||||
check them out!
|
||||
</p>
|
||||
<h5 class="alex">FAQ</h5>
|
||||
<ul class="list-style-type-faq">
|
||||
<li><strong>Why are you called Endermanch?</strong></li>
|
||||
<li>
|
||||
There's no particular reason to it. When I was rebranding my YouTube
|
||||
channel from Ender's Show to Enderman, the short URL was taken. I went
|
||||
thinking for quite some time, and then concluded that adding «ch» at the
|
||||
end sounded pretty good. I was 14 at the time of making that decision.
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</template>
|
||||
|
||||
+7
-2
@@ -1,8 +1,11 @@
|
||||
<script setup lang="ts">
|
||||
import { useRuntimeConfig } from '#imports'
|
||||
|
||||
const config = useRuntimeConfig()
|
||||
const meta = {
|
||||
title: 'Enderman',
|
||||
description:
|
||||
'A software engineer, a malware enthusiast and, most importantly, a weird tall creature.',
|
||||
'A software engineer, a malware enthusiast and, most importantly, a weird tall creature. I have over 300K subscribers on YouTube and over 20K followers on Twitter.',
|
||||
image: 'https://enderman.ch/images/logo.png',
|
||||
url: 'https://enderman.ch/',
|
||||
}
|
||||
@@ -22,7 +25,7 @@ useSeoMeta({
|
||||
})
|
||||
|
||||
useHead({
|
||||
title: 'Enderman',
|
||||
title: config.public.websiteName ? config.public.websiteName : 'Enderman',
|
||||
htmlAttrs: {
|
||||
lang: 'en',
|
||||
},
|
||||
@@ -34,6 +37,8 @@ useHead({
|
||||
},
|
||||
],
|
||||
})
|
||||
|
||||
defineRobotMeta()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
||||
@@ -64,6 +64,8 @@ useHead({
|
||||
},
|
||||
],
|
||||
})
|
||||
|
||||
defineRobotMeta()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
||||
@@ -84,6 +84,8 @@ useHead({
|
||||
},
|
||||
],
|
||||
})
|
||||
|
||||
defineRobotMeta()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
||||
Reference in New Issue
Block a user