-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0164ad7
commit 34e3f9d
Showing
59 changed files
with
299 additions
and
1,649 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
export type DocsNode = { | ||
name: string, | ||
icon?: string, | ||
} | ||
|
||
export type DocsPage = DocsNode & { path: string } | ||
|
||
export type DocsCategory = DocsNode & { pages: DocsPage[] } | ||
|
||
export const projects: (DocsPage | DocsCategory)[] = [ | ||
{ | ||
name: "Overview", | ||
path: "" | ||
}, | ||
{ | ||
name: "Personal", | ||
pages: [ | ||
{ | ||
name: "Raytracer", | ||
path: "/personal/raytracer" | ||
}, | ||
{ | ||
name: "Personal website (this site)", | ||
path: "/personal/website" | ||
} | ||
] | ||
}, | ||
{ | ||
name: "Degree-related", | ||
pages: [ | ||
{ | ||
name: "Library Manager", | ||
path: "/degree/library-manager" | ||
}, | ||
{ | ||
name: "Python QT Data Analysis Tool", | ||
path: "/degree/pythonqtdataanalysis" | ||
}, | ||
{ | ||
name: "Lunar Lander game written in SQL", | ||
path: "/degree/lunarlandersql" | ||
} | ||
] | ||
} | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.