Added more components

This commit is contained in:
Lorenzo Iovino 2023-12-29 04:34:47 +01:00
parent c94493a3c5
commit 8b20acfcc4
28 changed files with 436 additions and 31 deletions

9
src/app/models/post.ts Normal file
View file

@ -0,0 +1,9 @@
export interface Post {
title: string;
slug: string;
description: string;
content: string;
date: Date;
readTime: number;
image: string;
}