feat: add authentication

This commit is contained in:
2023-08-04 22:35:25 +02:00
parent f9638c35fc
commit 469db6525d
33 changed files with 492 additions and 100 deletions

View File

@@ -15,6 +15,7 @@ export type Article = {
status: "finished" | "not-finished";
date: Date;
link: string;
image?: string;
author?: string;
rating?: number;
};