wf4/app/pages/index.vue
webfussel fa0435efdf add: more SEO meta
More seometa, better markdown parser
2025-06-11 18:49:19 +02:00

22 lines
No EOL
591 B
Vue
Executable file

<template>
<div>
<SectionIntro />
<SectionSkills />
<SectionSkillsEasy />
</div>
</template>
<script lang="ts" setup>
useHead({
link: [
{ rel: 'preload', as: 'image', href: '/img/profile_big.webp', type: 'image/webp' },
{ rel: 'preload', as: 'image', href: '/img/profile_small.webp', type: 'image/webp' },
{ rel: 'icon', href: '/favicon.ico', type: 'image/x-icon' },
],
})
useSeoMeta({
title: 'Home',
description: 'Webprojekte und Retainer mit Fusselqualität. Du brauchst eine Website mit CMS? Bock auf Flatrate? webfussel by Fiona Urban',
})
</script>