38 lines
946 B
Vue
38 lines
946 B
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, shortened as "Spacebar", "SPBR", or as our former name "Splatfestival Network", is a Nintendo Network continuation with the goal of providing the best experience possible. Our servers are designed to be: (A) Fast, (B) Stable, (C) Secure, AND MOST IMPORTANTLY:, (D) With functionality as close to Nintendo Network as possible.'
|
|
|
|
useSeoMeta({
|
|
title,
|
|
description,
|
|
ogTitle: title,
|
|
ogDescription: description,
|
|
ogImage: 'https://git.spbr.net/spacebar/website/raw/branch/master/public/spbr-coloured.png'
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<UApp>
|
|
<TheHeader />
|
|
|
|
<UMain>
|
|
<NuxtPage />
|
|
</UMain>
|
|
|
|
<USeparator />
|
|
|
|
<MainFooter />
|
|
</UApp>
|
|
</template>
|