Add showcase data model with empty list

cgen-2737d32eaebe468196bb79299f82a912
This commit is contained in:
Builder.io 2025-10-19 02:22:56 +00:00
parent 523cb2ce65
commit ddd32335d9

17
client/data/showcase.ts Normal file
View 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[] = [];