ADD: meta tags

This commit is contained in:
webfussel 2024-05-22 14:05:38 +02:00
parent aadf90efce
commit 677ae67339
3 changed files with 55 additions and 2 deletions

51
app.vue
View file

@ -6,4 +6,53 @@
</section>
</template>
<script setup></script>
<script setup>
const tags = [
'webfussel',
'web',
'fussel',
'webentwicklung',
'webentwickler',
'vue',
'nuxt',
'javascript',
'typescript',
'scss',
'css',
'html',
'karlsruhe',
'freelance',
'freelancer',
'freiberuflich',
'remote',
'home office',
'api',
'components'
]
useHead({
title: 'webfussel | mehr Fussel im Web',
htmlAttrs: {
lang: 'de'
},
meta: [
{
name: 'description',
content: 'webfussel ist eine Webentwicklerin aus Baden-Württemberg. Sie entwickelt Komponenten, Applikationen und APIs.'
},
{
name: 'keywords',
content: tags.join(',')
},
{
name: 'author',
content: 'webfussel'
},
{
name: 'robots',
content: 'index, follow'
},
]
})
</script>