mirror of
https://github.com/EyeTrackVR/EyeTrackVR-Docs.git
synced 2025-11-04 14:49:44 +08:00
update: add contributors and fix import errors
This commit is contained in:
parent
7a196079b9
commit
155f036ea6
@ -2,9 +2,8 @@
|
||||
//https://vitepress.vuejs.org/guide/theme-nav#navigation-links
|
||||
|
||||
//import MyLayout from '../../vue/MyLayout.vue'
|
||||
import { type ThemeConfig } from "../../static/types/interfaces"
|
||||
|
||||
const theme: ThemeConfig = {
|
||||
const theme = {
|
||||
logo: {
|
||||
src: '/logo.svg',
|
||||
alt: 'EyeTrackVR Logo',
|
||||
@ -69,4 +68,4 @@ const theme: ThemeConfig = {
|
||||
|
||||
const ThemeSettings = {}
|
||||
|
||||
export { theme, ThemeConfig, ThemeSettings }
|
||||
export { theme, ThemeSettings }
|
||||
@ -6,7 +6,10 @@ const members: IMembers[] = [
|
||||
avatar: 'https://avatars.githubusercontent.com/u/48768484?v=4',
|
||||
title: 'Initiator / Moderator / Documentor / Lead Software Developer',
|
||||
links: [
|
||||
{ icon: 'github', link: 'https://github.com/RedHawk989' },
|
||||
{
|
||||
icon: 'github',
|
||||
link: 'https://github.com/RedHawk989'
|
||||
},
|
||||
]
|
||||
},
|
||||
{
|
||||
@ -14,7 +17,10 @@ const members: IMembers[] = [
|
||||
avatar: 'https://avatars.githubusercontent.com/u/115666235?v=4',
|
||||
title: 'Machine Learning Engineer / Data Scientist / App Developer',
|
||||
links: [
|
||||
{ icon: 'github', link: 'https://github.com/Summer404NotFound' },
|
||||
{
|
||||
icon: 'github',
|
||||
link: 'https://github.com/Summer404NotFound'
|
||||
},
|
||||
]
|
||||
},
|
||||
{
|
||||
@ -22,7 +28,10 @@ const members: IMembers[] = [
|
||||
avatar: 'https://avatars.githubusercontent.com/u/14099558?v=4',
|
||||
title: 'Lead Firmware Developer / App Developer',
|
||||
links: [
|
||||
{ icon: 'github', link: 'https://github.com/lorow' },
|
||||
{
|
||||
icon: 'github',
|
||||
link: 'https://github.com/lorow'
|
||||
},
|
||||
]
|
||||
},
|
||||
{
|
||||
@ -30,19 +39,28 @@ const members: IMembers[] = [
|
||||
avatar: 'https://avatars.githubusercontent.com/u/45744329?v=4',
|
||||
title: 'Firmware Developer / Documentation Manager / App Developer',
|
||||
links: [
|
||||
{ icon: 'github', link: 'https://github.com/ZanzyTHEbar' },
|
||||
{
|
||||
icon: 'github',
|
||||
link: 'https://github.com/ZanzyTHEbar'
|
||||
},
|
||||
]
|
||||
},
|
||||
]
|
||||
|
||||
const contributors: IMembers[] = [
|
||||
{
|
||||
name: 'Prohurtz',
|
||||
avatar: 'https://avatars.githubusercontent.com/u/1234567?v=4',
|
||||
title: 'Developer',
|
||||
name: 'qdot',
|
||||
avatar: 'https://avatars.githubusercontent.com/u/34539?v=4',
|
||||
links: [
|
||||
{ icon: 'github', link: '' },
|
||||
{ icon: 'discord', link: '' },
|
||||
{ icon: 'github', link: 'https://github.com/qdot' },
|
||||
{ icon: 'twitter', link: 'https://twitter.com/qdot' },
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'dfgHiatus',
|
||||
avatar: 'https://avatars.githubusercontent.com/u/51272212?v=4',
|
||||
links: [
|
||||
{ icon: 'github', link: 'https://github.com/dfgHiatus' },
|
||||
]
|
||||
},
|
||||
]
|
||||
|
||||
@ -6,6 +6,6 @@ export interface ISocialLinks {
|
||||
export interface IMembers {
|
||||
name: string,
|
||||
avatar?: string,
|
||||
title: string,
|
||||
title?: string,
|
||||
links: ISocialLinks[],
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user