🚀 feat(_new): new website ui and function

This commit is contained in:
eshanized
2024-12-25 03:38:05 +05:30
parent 3196782ce5
commit 3e920da9fc
89 changed files with 10212 additions and 0 deletions

15
src/types/download.ts Normal file
View File

@@ -0,0 +1,15 @@
export interface Mirror {
id: string;
name: string;
location: string;
url: string;
speed: number;
}
export interface DownloadVersion {
version: string;
size: string;
url: string;
sha256: string;
gpg: string;
}