From 155f036ea6baf07577952e25d6ba8178f1a8a59b Mon Sep 17 00:00:00 2001 From: ZanzyTHEbar Date: Fri, 6 Jan 2023 22:09:59 +0000 Subject: [PATCH] update: add contributors and fix import errors --- vitepress/docs/src/custom/theme/index.ts | 5 ++- vitepress/docs/src/static/members/index.ts | 36 ++++++++++++++----- .../docs/src/static/types/interfaces/index.ts | 2 +- 3 files changed, 30 insertions(+), 13 deletions(-) diff --git a/vitepress/docs/src/custom/theme/index.ts b/vitepress/docs/src/custom/theme/index.ts index 1039062..95a2730 100644 --- a/vitepress/docs/src/custom/theme/index.ts +++ b/vitepress/docs/src/custom/theme/index.ts @@ -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 } \ No newline at end of file +export { theme, ThemeSettings } \ No newline at end of file diff --git a/vitepress/docs/src/static/members/index.ts b/vitepress/docs/src/static/members/index.ts index de23883..a5347c3 100644 --- a/vitepress/docs/src/static/members/index.ts +++ b/vitepress/docs/src/static/members/index.ts @@ -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' }, ] }, ] diff --git a/vitepress/docs/src/static/types/interfaces/index.ts b/vitepress/docs/src/static/types/interfaces/index.ts index 8eee868..063ddbf 100644 --- a/vitepress/docs/src/static/types/interfaces/index.ts +++ b/vitepress/docs/src/static/types/interfaces/index.ts @@ -6,6 +6,6 @@ export interface ISocialLinks { export interface IMembers { name: string, avatar?: string, - title: string, + title?: string, links: ISocialLinks[], } \ No newline at end of file