21 lines
512 B
TypeScript
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
|
|
}
|
|
}
|
|
})
|