58 lines
882 B
Vue
58 lines
882 B
Vue
<style src="./Globals.css" />
|
|
|
|
<template>
|
|
<section>
|
|
<NuxtPage />
|
|
</section>
|
|
</template>
|
|
|
|
<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>
|