ADD: meta tags
This commit is contained in:
parent
aadf90efce
commit
677ae67339
3 changed files with 55 additions and 2 deletions
51
app.vue
51
app.vue
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue