Add showcase data model with empty list
cgen-2737d32eaebe468196bb79299f82a912
This commit is contained in:
parent
523cb2ce65
commit
ddd32335d9
1 changed files with 17 additions and 0 deletions
17
client/data/showcase.ts
Normal file
17
client/data/showcase.ts
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
export interface ShowcaseLink {
|
||||
label: string;
|
||||
href: string;
|
||||
}
|
||||
|
||||
export interface ShowcaseProject {
|
||||
id: string;
|
||||
title: string;
|
||||
role?: string;
|
||||
timeframe?: string;
|
||||
description?: string;
|
||||
tags?: string[];
|
||||
links?: ShowcaseLink[];
|
||||
image?: string;
|
||||
}
|
||||
|
||||
export const SHOWCASE: ShowcaseProject[] = [];
|
||||
Loading…
Reference in a new issue