13 lines
190 B
Vue
13 lines
190 B
Vue
<template>
|
|
<NuxtLayout>
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
</template>
|
|
|
|
<script setup>
|
|
useHead({
|
|
title: 'Indefiti',
|
|
meta: [{ name: 'robots', content: 'noindex,nofollow' }],
|
|
})
|
|
</script>
|