Initial commit: Tool Website with Password Generator, Image Converter and Bookmarks

This commit is contained in:
danielvici123
2025-05-16 00:40:51 +02:00
commit d478acc6e3
19 changed files with 4049 additions and 0 deletions

7
app/types/types.ts Normal file
View File

@@ -0,0 +1,7 @@
export type PinnedWebsite = {
id: string;
title: string;
url: string;
icon?: string;
addedAt: number;
}