wf4/app/pages/index.vue
webfussel 2d65119e7e ADD: seo
Add seo abilities
2025-06-05 08:53:28 +02:00

17 lines
No EOL
415 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' },
],
})
</script>