Files
portfolio-v2/content/projects.ts
2026-03-16 21:25:53 +01:00

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