feat: update info dialog (#2741)
This commit is contained in:
parent
aa28257754
commit
9025416ab3
8 changed files with 32 additions and 9 deletions
|
@ -3,8 +3,10 @@ import type { BuildInfo } from '~~/types'
|
|||
export interface Team {
|
||||
github: string
|
||||
display: string
|
||||
twitter: string
|
||||
twitter?: string
|
||||
mastodon: string
|
||||
link: string
|
||||
sponsors?: string
|
||||
}
|
||||
|
||||
export const elkTeamMembers: Team[] = [
|
||||
|
@ -13,24 +15,43 @@ export const elkTeamMembers: Team[] = [
|
|||
display: 'Anthony Fu',
|
||||
twitter: 'antfu7',
|
||||
mastodon: 'antfu@webtoo.ls',
|
||||
link: '/m.webtoo.ls/@antfu',
|
||||
},
|
||||
{
|
||||
github: 'patak-dev',
|
||||
display: 'Patak',
|
||||
twitter: 'patak_dev',
|
||||
mastodon: 'patak@webtoo.ls',
|
||||
link: '/m.webtoo.ls/@patak',
|
||||
},
|
||||
{
|
||||
github: 'danielroe',
|
||||
display: 'Daniel Roe',
|
||||
twitter: 'danielcroe',
|
||||
mastodon: 'daniel@roe.dev',
|
||||
link: '/mastodon.roe.dev/@daniel',
|
||||
},
|
||||
{
|
||||
github: 'sxzz',
|
||||
display: '三咲智子 Kevin Deng',
|
||||
twitter: 'sanxiaozhizi',
|
||||
mastodon: 'sxzz@webtoo.ls',
|
||||
link: '/m.webtoo.ls/@sxzz',
|
||||
},
|
||||
{
|
||||
github: 'userquin',
|
||||
display: 'Joaquín Sánchez',
|
||||
twitter: 'userquin',
|
||||
mastodon: 'userquin@webtoo.ls',
|
||||
link: '/m.webtoo.ls/@userquin',
|
||||
sponsors: 'elk-zone', // sponsors/userquin isn't enabled
|
||||
},
|
||||
{
|
||||
github: 'shuuji3',
|
||||
display: 'TAKAHASHI Shuuji',
|
||||
mastodon: 'shuuji3@webtoo.ls',
|
||||
link: '/m.webtoo.ls/@shuuji3',
|
||||
sponsors: 'elk-zone', // sponsors/shuuji3 isn't enabled
|
||||
},
|
||||
].sort(() => Math.random() - 0.5)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue