wf4/app.vue
2024-05-30 08:52:28 +02:00

27 lines
903 B
Vue

<template>
<section>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</section>
</template>
<script setup>
useSeoMeta({
title: 'webfussel | mehr Fussel im Web',
description: 'Du brauchst was fürs Web? Komponenten, APIs oder Fullstack? Kein Ding.',
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>