update: add contributors and fix import errors

This commit is contained in:
ZanzyTHEbar 2023-01-06 22:09:59 +00:00
parent 7a196079b9
commit 155f036ea6
3 changed files with 30 additions and 13 deletions

View File

@ -2,9 +2,8 @@
//https://vitepress.vuejs.org/guide/theme-nav#navigation-links //https://vitepress.vuejs.org/guide/theme-nav#navigation-links
//import MyLayout from '../../vue/MyLayout.vue' //import MyLayout from '../../vue/MyLayout.vue'
import { type ThemeConfig } from "../../static/types/interfaces"
const theme: ThemeConfig = { const theme = {
logo: { logo: {
src: '/logo.svg', src: '/logo.svg',
alt: 'EyeTrackVR Logo', alt: 'EyeTrackVR Logo',
@ -69,4 +68,4 @@ const theme: ThemeConfig = {
const ThemeSettings = {} const ThemeSettings = {}
export { theme, ThemeConfig, ThemeSettings } export { theme, ThemeSettings }

View File

@ -6,7 +6,10 @@ const members: IMembers[] = [
avatar: 'https://avatars.githubusercontent.com/u/48768484?v=4', avatar: 'https://avatars.githubusercontent.com/u/48768484?v=4',
title: 'Initiator / Moderator / Documentor / Lead Software Developer', title: 'Initiator / Moderator / Documentor / Lead Software Developer',
links: [ 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', avatar: 'https://avatars.githubusercontent.com/u/115666235?v=4',
title: 'Machine Learning Engineer / Data Scientist / App Developer', title: 'Machine Learning Engineer / Data Scientist / App Developer',
links: [ 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', avatar: 'https://avatars.githubusercontent.com/u/14099558?v=4',
title: 'Lead Firmware Developer / App Developer', title: 'Lead Firmware Developer / App Developer',
links: [ 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', avatar: 'https://avatars.githubusercontent.com/u/45744329?v=4',
title: 'Firmware Developer / Documentation Manager / App Developer', title: 'Firmware Developer / Documentation Manager / App Developer',
links: [ links: [
{ icon: 'github', link: 'https://github.com/ZanzyTHEbar' }, {
icon: 'github',
link: 'https://github.com/ZanzyTHEbar'
},
] ]
}, },
] ]
const contributors: IMembers[] = [ const contributors: IMembers[] = [
{ {
name: 'Prohurtz', name: 'qdot',
avatar: 'https://avatars.githubusercontent.com/u/1234567?v=4', avatar: 'https://avatars.githubusercontent.com/u/34539?v=4',
title: 'Developer',
links: [ links: [
{ icon: 'github', link: '' }, { icon: 'github', link: 'https://github.com/qdot' },
{ icon: 'discord', link: '' }, { 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' },
] ]
}, },
] ]

View File

@ -6,6 +6,6 @@ export interface ISocialLinks {
export interface IMembers { export interface IMembers {
name: string, name: string,
avatar?: string, avatar?: string,
title: string, title?: string,
links: ISocialLinks[], links: ISocialLinks[],
} }