website/app/app.vue
kittentm 2c78b5d259
All checks were successful
ci / ci (22, debian-trixie) (push) Successful in 30s
chore: fix embed
2026-07-20 23:46:52 +02:00

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>