2025-04-05 16:19:10 +00:00
|
|
|
import {Routes} from '@angular/router';
|
2025-04-02 17:18:39 +00:00
|
|
|
|
2025-04-08 19:45:44 +00:00
|
|
|
export const routes: Routes = [
|
|
|
|
|
{
|
|
|
|
|
path: '',
|
|
|
|
|
loadComponent: () => import('./home/home.component').then(m => m.HomeComponent)
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: 'map',
|
|
|
|
|
loadComponent: () => import('./map/map.component').then(m => m.MapComponent)
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: 'rules',
|
|
|
|
|
loadComponent: () => import('./rules/rules.component').then(m => m.RulesComponent)
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: 'vote',
|
|
|
|
|
loadComponent: () => import('./vote/vote.component').then(m => m.VoteComponent)
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: 'about',
|
|
|
|
|
loadComponent: () => import('./about/about.component').then(m => m.AboutComponent)
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: 'socials',
|
|
|
|
|
loadComponent: () => import('./socials/socials.component').then(m => m.SocialsComponent)
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: 'team',
|
|
|
|
|
loadComponent: () => import('./team/team.component').then(m => m.TeamComponent)
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: 'birthdays',
|
|
|
|
|
loadComponent: () => import('./birthdays/birthdays.component').then(m => m.BirthdaysComponent)
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: 'terms',
|
|
|
|
|
loadComponent: () => import('./terms/terms.component').then(m => m.TermsComponent)
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: 'privacy',
|
|
|
|
|
loadComponent: () => import('./privacy/privacy.component').then(m => m.PrivacyComponent)
|
2025-04-11 19:20:02 +00:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: 'bans',
|
|
|
|
|
loadComponent: () => import('./bans/bans.component').then(m => m.BansComponent)
|
2025-04-18 20:52:05 +00:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: 'economy',
|
|
|
|
|
loadComponent: () => import('./economy/economy.component').then(m => m.EconomyComponent)
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: 'claiming',
|
|
|
|
|
loadComponent: () => import('./claiming/claiming.component').then(m => m.ClaimingComponent)
|
2025-04-08 19:45:44 +00:00
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|