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
|
|
|
},
|
2025-04-19 02:02:51 +00:00
|
|
|
{
|
|
|
|
|
path: 'bans/:type/:id',
|
|
|
|
|
loadComponent: () => import('./bans/details/details.component').then(m => m.DetailsComponent)
|
|
|
|
|
},
|
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-19 14:37:27 +00:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: 'mypet',
|
|
|
|
|
loadComponent: () => import('./mypet/mypet.component').then(m => m.MypetComponent)
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: 'warps',
|
|
|
|
|
loadComponent: () => import('./warps/warps.component').then(m => m.WarpsComponent)
|
2025-05-30 20:19:36 +00:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: 'skyblock',
|
|
|
|
|
loadComponent: () => import('./skyblock/skyblock.component').then(m => m.SkyblockComponent)
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: 'customfeatures',
|
|
|
|
|
loadComponent: () => import('./customfeatures/customfeatures.component').then(m => m.CustomfeaturesComponent)
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: 'guide',
|
|
|
|
|
loadComponent: () => import('./guide/guide.component').then(m => m.GuideComponent)
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: 'ranks',
|
|
|
|
|
loadComponent: () => import('./ranks/ranks.component').then(m => m.RanksComponent)
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: 'commandlist',
|
|
|
|
|
loadComponent: () => import('./commandlist/commandlist.component').then(m => m.CommandlistComponent)
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: 'mapart',
|
|
|
|
|
loadComponent: () => import('./mapart/mapart.component').then(m => m.MapartComponent)
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: 'lag',
|
|
|
|
|
loadComponent: () => import('./lag/lag.component').then(m => m.LagComponent)
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: 'staffpowers',
|
|
|
|
|
loadComponent: () => import('./staffpowers/staffpowers.component').then(m => m.StaffpowersComponent)
|
2025-05-30 21:41:13 +00:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: 'forms/:form',
|
|
|
|
|
loadComponent: () => import('./forms/forms.component').then(m => m.FormsComponent)
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: 'forms',
|
|
|
|
|
loadComponent: () => import('./forms/forms.component').then(m => m.FormsComponent)
|
|
|
|
|
},
|
2025-04-08 19:45:44 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|