diff --git a/client/data/showcase.ts b/client/data/showcase.ts new file mode 100644 index 00000000..2e2ee37a --- /dev/null +++ b/client/data/showcase.ts @@ -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[] = [];