22 lines
437 B
TypeScript
22 lines
437 B
TypeScript
export type ProjectFrontmatter = {
|
|
ready: boolean;
|
|
title: string;
|
|
priority: number;
|
|
category: string;
|
|
client: string;
|
|
roles: string[];
|
|
technologies: string[];
|
|
cover?: string;
|
|
preview1?: string;
|
|
preview2?: string;
|
|
website?: string;
|
|
featured: boolean;
|
|
description: string;
|
|
dateLabel: string;
|
|
};
|
|
|
|
export type Project = ProjectFrontmatter & {
|
|
slug: string;
|
|
content: string;
|
|
};
|