🚀 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

25
src/data/mirrors.ts Normal file
View File

@@ -0,0 +1,25 @@
import { Mirror } from '@/types/download';
export const mirrors: Mirror[] = [
{
id: 'us-east',
name: 'US East Mirror',
location: 'New York, USA',
url: 'https://mirror-east.snigdhaos.org',
speed: 120,
},
{
id: 'eu-central',
name: 'EU Central Mirror',
location: 'Frankfurt, Germany',
url: 'https://mirror-eu.snigdhaos.org',
speed: 100,
},
{
id: 'asia-east',
name: 'Asia East Mirror',
location: 'Singapore',
url: 'https://mirror-asia.snigdhaos.org',
speed: 80,
},
];