website/app/composables/MainFooter.ts

21 lines
512 B
TypeScript
Raw Permalink Normal View History

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
}
}
})