website/app/composables/MainFooter.ts
KittenTM 9ee2d1b20d
Some checks failed
ci / ci (22, debian-trixie) (push) Failing after 19s
fix: improve type definitions in ServiceCard component
2026-05-14 08:28:22 +02:00

21 lines
512 B
TypeScript

import { defineComponent } from 'vue'
export default defineComponent({
setup() {
const footerLinks = [
{
label: 'Socials',
children: [
{ label: 'Twitter', to: 'https://x.com/Splatfestival_' },
{ label: 'Discord', to: 'https://discord.gg/grMSxZf' },
{ label: 'Forgejo', to: 'https://git.spbr.net/spacebar' },
{ label: 'Patreon', to: 'https://www.patreon.com/splatfestival' }
]
}
]
return {
footerLinks
}
}
})