clean up global styles

This commit is contained in:
2022-01-10 16:15:25 -05:00
parent 18e04bdd5f
commit 3864d18ba3
11 changed files with 103 additions and 93 deletions
+13
View File
@@ -15,3 +15,16 @@ export type NoteType = {
frontMatter: NoteMetaType;
mdxSource: string;
};
export type RepoType = {
name: string;
url: string;
description?: string;
language?: {
name: string;
color?: string;
};
stars?: number;
forks?: number;
updatedAt: string;
};