Files
matheoguilbert.fr/lib/projects/types.ts
T
2026-04-16 10:47:28 +02:00

20 lines
396 B
TypeScript

export type ProjectFrontmatter = {
title: string;
priority: number;
category: string;
client: string;
roles: string[];
technologies: string[];
preview1?: string;
preview2?: string;
website: string;
featured: boolean;
description: string;
dateLabel: string;
};
export type Project = ProjectFrontmatter & {
slug: string;
content: string;
};