14 lines
222 B
TypeScript
14 lines
222 B
TypeScript
export type Project = {
|
|
id: string;
|
|
title: string;
|
|
description: string;
|
|
tags: string[];
|
|
image?: string;
|
|
liveUrl?: string;
|
|
githubUrl?: string;
|
|
featured?: boolean;
|
|
};
|
|
|
|
export const projects: Project[] = [
|
|
];
|