Added contents

This commit is contained in:
Lorenzo Iovino 2023-12-31 01:04:33 +01:00
parent d8057be1b4
commit 24decc9de4
52 changed files with 537 additions and 139 deletions

11
src/app/models/work.ts Normal file
View file

@ -0,0 +1,11 @@
export interface Work {
website: string;
image: string;
description: string;
name: string;
content: string;
date: {
start: Date;
end: Date;
};
}