diff --git a/frontend/src/app/app.routes.ts b/frontend/src/app/app.routes.ts index a6ae8da..04516b1 100644 --- a/frontend/src/app/app.routes.ts +++ b/frontend/src/app/app.routes.ts @@ -7,6 +7,11 @@ export const routes: Routes = [ redirectTo: 'redirect/worlddl', pathMatch: 'full' }, + { + path: 'grove-dl', + redirectTo: 'redirect/grove-dl', + pathMatch: 'full' + }, { path: 'redirect/:type', loadComponent: () => import('./shared-components/redirect/redirect.component').then(m => m.RedirectComponent), diff --git a/frontend/src/app/shared-components/redirect/redirect.component.ts b/frontend/src/app/shared-components/redirect/redirect.component.ts index bcb823c..1303b89 100644 --- a/frontend/src/app/shared-components/redirect/redirect.component.ts +++ b/frontend/src/app/shared-components/redirect/redirect.component.ts @@ -12,6 +12,7 @@ export class RedirectComponent implements OnInit { private route: ActivatedRoute = inject(ActivatedRoute) private map: Record = { 'worlddl': 'https://www.mediafire.com/folder/zblzjurjleq6i/Altitude_servers_1.17.1', + 'grove-dl': 'https://www.mediafire.com/folder/bd6ej1i7if0y6', }; private getRedirectTarget(key: string): string | null {