forked from elk-zone/elk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.ts
39 lines (36 loc) · 777 Bytes
/
about.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import type { BuildInfo } from '~~/types'
export interface Team {
github: string
display: string
twitter: string
mastodon: string
}
export const elkTeamMembers: Team[] = [
{
github: 'antfu',
display: 'Anthony Fu',
twitter: 'antfu7',
mastodon: '[email protected]',
},
{
github: 'patak-dev',
display: 'Patak',
twitter: 'patak_dev',
mastodon: '[email protected]',
},
{
github: 'danielroe',
display: 'Daniel Roe',
twitter: 'danielcroe',
mastodon: '[email protected]',
},
{
github: 'sxzz',
display: '三咲智子 Kevin Deng',
twitter: 'sanxiaozhizi',
mastodon: '[email protected]',
},
].sort(() => Math.random() - 0.5)
export function useBuildInfo() {
return useAppConfig().buildInfo as BuildInfo
}