aethex-forge/client/data/showcase.ts
Builder.io ddd32335d9 Add showcase data model with empty list
cgen-2737d32eaebe468196bb79299f82a912
2025-10-19 02:22:56 +00:00

17 lines
310 B
TypeScript

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[] = [];