1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-06-30 22:46:39 -04:00

clean up global styles

This commit is contained in:
2022-01-10 16:15:17 -05:00
parent 18e04bdd5f
commit 3864d18ba3
11 changed files with 103 additions and 93 deletions

13
types/index.d.ts vendored
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;
};