TOPVERSE_Official/config/use-foot.ts

81 lines
1.7 KiB
TypeScript
Raw Normal View History

2023-05-04 17:42:22 +08:00
export function useFoot() {
return {
copyright: 'foot.copyright',
release: 'foot.release',
record: ['foot.record[0]', 'foot.record[1]'],
links: [
{
title: 'foot.links[0].group',
child: [
{
link: {
name: 'foot.links[0].link[0]',
2023-05-25 03:45:47 +08:00
href: '/',
},
2023-05-04 17:42:22 +08:00
},
{
link: {
name: 'foot.links[0].link[1]',
href: '#',
},
2023-05-04 17:42:22 +08:00
},
{
link: {
name: 'foot.links[0].link[2]',
href: '#',
},
2023-05-04 17:42:22 +08:00
},
],
},
{
title: 'foot.links[1].group',
child: [
{
link: {
name: 'foot.links[1].link[0]',
2023-05-26 14:21:14 +08:00
href: '/about',
},
2023-05-04 17:42:22 +08:00
},
{
link: {
name: 'foot.links[1].link[1]',
2023-05-26 14:21:14 +08:00
href: '/about#location',
},
2023-05-04 17:42:22 +08:00
},
{
link: {
name: 'foot.links[1].link[2]',
2023-05-26 14:21:14 +08:00
href: '/',
},
2023-05-04 17:42:22 +08:00
},
],
},
{
title: 'foot.links[2].group',
child: [
{
2023-05-19 19:24:58 +08:00
icon: 'i-ic-sharp-wechat',
link: {
name: 'foot.links[2].link[0]',
href: '#',
},
2023-05-04 17:42:22 +08:00
},
{
2023-05-19 19:24:58 +08:00
icon: 'i-ri-twitter-fill',
link: {
name: 'foot.links[2].link[1]',
2023-05-25 03:45:47 +08:00
href: 'https://twitter.com/Topverse_Studio',
},
2023-05-04 17:42:22 +08:00
},
{
link: {
name: 'foot.links[2].link[2]',
href: '#',
},
2023-05-04 17:42:22 +08:00
},
],
},
],
}
2023-05-04 17:42:22 +08:00
}