55 lines
1.3 KiB
Vue
55 lines
1.3 KiB
Vue
<script setup>
|
|
useHead({
|
|
meta: [
|
|
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }
|
|
],
|
|
link: [
|
|
{ rel: 'icon', href: '/favicon.ico' }
|
|
],
|
|
htmlAttrs: {
|
|
lang: 'en'
|
|
}
|
|
})
|
|
|
|
const title = 'Spacebar Network'
|
|
const description = 'Spacebar Network(SPBR) is a extension of Splatfestival Network(SPFN), which aims to be a Nintendo Network recreation primarily with the intention of hosting Splatfests with Splatfestival. (Spacebar is seperate from this purpose, however we are still partnered with Splatfestival.)'
|
|
|
|
useSeoMeta({
|
|
title,
|
|
description,
|
|
ogTitle: title,
|
|
ogDescription: description,
|
|
twitterCard: 'summary_large_image'
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<UApp>
|
|
<TheHeader />
|
|
|
|
<UMain>
|
|
<NuxtPage />
|
|
</UMain>
|
|
|
|
<USeparator icon="i-simple-icons-nuxtdotjs" />
|
|
|
|
<UFooter>
|
|
<template #left>
|
|
<p class="text-sm text-muted">
|
|
Built with Nuxt UI • © {{ new Date().getFullYear() }}
|
|
</p>
|
|
</template>
|
|
|
|
<template #right>
|
|
<UButton
|
|
to="https://github.com/nuxt-ui-templates/starter"
|
|
target="_blank"
|
|
icon="i-simple-icons-github"
|
|
aria-label="GitHub"
|
|
color="neutral"
|
|
variant="ghost"
|
|
/>
|
|
</template>
|
|
</UFooter>
|
|
</UApp>
|
|
</template>
|