website/app/app.vue

38 lines
858 B
Vue
Raw Normal View History

2026-05-12 21:05:12 +02:00
<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>
2026-05-13 00:13:45 +02:00
<NuxtPage />
2026-05-12 21:05:12 +02:00
</UMain>
<USeparator icon="i-simple-icons-nuxtdotjs" />
2026-05-13 03:19:37 +02:00
<MainFooter />
2026-05-12 21:05:12 +02:00
</UApp>
2026-05-13 03:19:37 +02:00
</template>