1
0
Fork 0
ryanmoon.com/app.vue

30 lines
804 B
Vue

<script setup>
useHead({
htmlAttrs: [
{ lang: 'en'}
],
link: [
{ rel: 'apple-touch-icon', sizes: '180x180', href: '/apple-touch-icon.png' },
{ rel: 'icon', sizes: '32x32', href: '/favicon-32x32.png' },
{ rel: 'icon', sizes: '16x16', href: '/favicon-16x16.png' },
{ rel: 'manifest', href: '/site.webmanifest' },
{ rel: 'mask-icon', href: '/safari-pinned-tab.svg', color: '#131020' },
],
meta: [
{ name: 'msapplication-TileColor', content: '#131020' },
{ name: 'theme-color', content: '#ffffff' }
],
script: [
{ defer: 'true', 'data-domain': 'ryanmoon.com', src: 'https://pa.inspin.io/js/latest.js' }
]
})
</script>
<template>
<Header></Header>
<main>
<NuxtPage/>
</main>
<Footer></Footer>
</template>