aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs/content/team.ts
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/team.ts')
-rw-r--r--docs/content/team.ts16
1 files changed, 0 insertions, 16 deletions
diff --git a/docs/content/team.ts b/docs/content/team.ts
deleted file mode 100644
index 1c8ac0f..0000000
--- a/docs/content/team.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-const HYDROROLL_TEAM: Record<string, AuthorDetails> = {
- HsiangNianian: {
- name: "简律纯",
- GithubUsername: "HsiangNianian",
- picture: "/images/people/HsiangNianian.jpg",
- },
-};
-
-export type Author = keyof typeof HYDROROLL_TEAM;
-export type AuthorDetails = {
- name: string;
- GithubUsername?: string;
- picture: string;
-};
-
-export default HYDROROLL_TEAM;