20 lines
369 B
Vue
20 lines
369 B
Vue
<script setup lang="ts">
|
|
useHead({
|
|
title: 'Rasmus Search Engine',
|
|
meta: [
|
|
{ name: 'description', content: 'Just a search engine for fun' },
|
|
{ name: 'lang', content: 'en'}
|
|
],
|
|
|
|
link: [
|
|
{ rel: 'icon', type: 'image/jpeg', href: '/favicon.jpg' }
|
|
],
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtLayout>
|
|
<NuxtPage page-key="static" />
|
|
</NuxtLayout>
|
|
|
|
</template> |