website/app/app.vue

38 lines
946 B
Vue
Raw Permalink 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'
2026-07-20 23:46:52 +02:00
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.'
2026-05-12 21:05:12 +02:00
useSeoMeta({
title,
description,
ogTitle: title,
ogDescription: description,
2026-07-20 23:46:52 +02:00
ogImage: 'https://git.spbr.net/spacebar/website/raw/branch/master/public/spbr-coloured.png'
2026-05-12 21:05:12 +02:00
})
</script>
<template>
<UApp>
<TheHeader />
<UMain>
2026-05-13 00:13:45 +02:00
<NuxtPage />
2026-05-12 21:05:12 +02:00
</UMain>
2026-07-19 08:54:39 +02:00
<USeparator />
2026-05-12 21:05:12 +02:00
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>