27 lines
944 B
Vue
27 lines
944 B
Vue
<template>
|
|
<section>
|
|
<NuxtLayout>
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
</section>
|
|
</template>
|
|
|
|
<script setup>
|
|
useSeoMeta({
|
|
title: 'webfussel | mehr Fussel im Web by Fiona Urban',
|
|
description: 'Du brauchst was fürs Web? Komponenten, APIs oder Fullstack? Kein Ding. Fiona Urban erledigt das.',
|
|
author: 'webfussel',
|
|
robots: 'index, follow',
|
|
themeColor: '#2a2723',
|
|
ogTitle: 'webfussel | mehr Fussel im Web',
|
|
ogDescription: 'Du brauchst was fürs Web? Komponenten, APIs oder Fullstack? Kein Ding.',
|
|
ogImage: '/img/og.webp',
|
|
ogImageAlt: 'Das webfussel Logo auf einem dunklen Hintergrund',
|
|
ogUrl: 'https://webfussel.de',
|
|
twitterTitle: 'webfussel | mehr Fussel im Web',
|
|
twitterDescription: 'Du brauchst was fürs Web? Komponenten, APIs oder Fullstack? Kein Ding.',
|
|
twitterImage: '/img/og.webp',
|
|
twitterImageAlt: 'Das webfussel Logo auf einem dunklen Hintergrund',
|
|
twitterUrl: 'https://webfussel.de',
|
|
})
|
|
</script>
|