Initial draft

This commit is contained in:
2025-09-30 15:29:12 +02:00
commit 3025fbec9c
24 changed files with 591 additions and 0 deletions

7
types/Item.ts Normal file
View File

@@ -0,0 +1,7 @@
export type Item = {
timestamp: number;
category: 'home' | 'royal-road' | 'podcasts' | 'mixtapes';
title: string;
info: string;
link: string;
};