lint: fix lint
All checks were successful
ci / ci (22, debian-trixie) (push) Successful in 29s

This commit is contained in:
kittentm 2026-05-13 03:19:37 +02:00
commit 587bbca7b3
Signed by: kitten
GPG key ID: 394B4EABE4405A83
5 changed files with 39 additions and 36 deletions

View file

@ -33,6 +33,6 @@ useSeoMeta({
<USeparator icon="i-simple-icons-nuxtdotjs" />
<Footer />
<MainFooter />
</UApp>
</template>
</template>

View file

@ -1,13 +1,13 @@
<template>
<img
src="/spbr-coloured.png"
alt="Spacebar Logo"
<img
src="/spbr-coloured.png"
alt="Spacebar Logo"
class="h-10 w-auto object-contain"
/>
>
</template>
<style scoped>
img {
height: 40px;
height: 40px;
}
</style>
</style>

View file

@ -13,7 +13,10 @@ const footerLinks = [{
<template>
<UFooter>
<template #top>
<UFooterColumns :links="footerLinks" class="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8 py-12">
<UFooterColumns
:links="footerLinks"
class="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8 py-12"
>
<template #left>
<div class="flex flex-col gap-4">
<div class="flex items-center gap-3">
@ -26,7 +29,7 @@ const footerLinks = [{
<p>Copyright 2026</p>
<p>Site maintained by Spacebar Network</p>
<p>Developed by our contributors</p>
<p class="mt-4 max-w-[320px] leading-snug text-gray-500">
Spacebar Network (SPBR) is an extension of Splatfestival Network (SPFN), which aims to be a Nintendo Network recreation primarily for hosting Splatfests. Spacebar is separate from this purpose, though we remain partnered with Splatfestival.
</p>
@ -44,29 +47,29 @@ const footerLinks = [{
<template #right>
<div class="flex gap-2">
<UButton
icon="i-simple-icons-patreon"
color="neutral"
variant="ghost"
to="https://www.patreon.com/splatfestival"
<UButton
icon="i-simple-icons-patreon"
color="neutral"
variant="ghost"
to="https://www.patreon.com/splatfestival"
target="_blank"
aria-label="Patreon"
aria-label="Patreon"
/>
<UButton
icon="i-simple-icons-discord"
color="neutral"
variant="ghost"
to="https://discord.gg/grMSxZf"
<UButton
icon="i-simple-icons-discord"
color="neutral"
variant="ghost"
to="https://discord.gg/grMSxZf"
target="_blank"
aria-label="Discord"
aria-label="Discord"
/>
<UButton
icon="i-simple-icons-gitea"
color="neutral"
variant="ghost"
to="https://git.spbr.net/spacebar"
<UButton
icon="i-simple-icons-gitea"
color="neutral"
variant="ghost"
to="https://git.spbr.net/spacebar"
target="_blank"
aria-label="Forgejo"
aria-label="Forgejo"
/>
</div>
</template>
@ -79,4 +82,4 @@ const footerLinks = [{
font-weight: 400;
font-style: normal;
}
</style>
</style>

View file

@ -1,6 +1,6 @@
<template>
<div>
<TheHeader />
<slot /> <Footer />
<slot /> <MainFooter />
</div>
</template>
</template>

View file

@ -4,6 +4,10 @@ export default defineNuxtConfig({
'@nuxt/eslint',
'@nuxt/ui'
],
devtools: {
enabled: true
},
app: {
head: {
link: [
@ -24,10 +28,6 @@ export default defineNuxtConfig({
}
},
devtools: {
enabled: true
},
css: ['~/assets/css/main.css'],
colorMode: {
@ -51,4 +51,4 @@ export default defineNuxtConfig({
}
}
}
})
})