From f5ba1046b13acd239c472e361f345902937662fb Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Thu, 20 Jan 2022 11:57:16 +0100 Subject: chore: add a page for projects --- src/ts/types/app.ts | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'src/ts/types/app.ts') diff --git a/src/ts/types/app.ts b/src/ts/types/app.ts index b5707a2..6f9bbce 100644 --- a/src/ts/types/app.ts +++ b/src/ts/types/app.ts @@ -89,11 +89,28 @@ export type Meta = { updatedOn: string; }; +export type ProjectMeta = Meta & { + license: string; + repos?: { + github?: string; + gitlab?: string; + }; + technologies?: string[]; +}; + export type PageInfo = { endCursor: string; hasNextPage: boolean; }; +export type Project = { + cover: string; + id: string; + intro: string; + meta: ProjectMeta; + slug: string; +}; + export type Slug = { slug: string; }; -- cgit v1.2.3