Skip to content

Commit d0cdeb8

Browse files
committed
chore: fix page name
1 parent 77b41aa commit d0cdeb8

5 files changed

Lines changed: 13 additions & 13 deletions

File tree

src/app/app.routes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Routes } from '@angular/router';
22

33
export const ROUTES: Routes = [
44
{ path: '', redirectTo: 'dashboard', pathMatch: 'full' },
5-
{ path: 'dashboard', loadComponent: () => import('./pages/wellcome/wellcome.component').then(m => m.WellcomeComponent) },
5+
{ path: 'dashboard', loadComponent: () => import('./pages/welcome/welcome.component').then(m => m.WelcomeComponent) },
66
{ path: 'settings', loadComponent: () => import('./pages/settings/settings.component').then(m => m.SettingsComponent) },
77

88
{ path: '404', loadComponent: () => import('./pages/page-not-found/page-not-found.component').then(m => m.PageNotFoundComponent) },
File renamed without changes.
File renamed without changes.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import { Component } from '@angular/core';
2+
3+
@Component({
4+
selector: 'app-welcome',
5+
standalone: true,
6+
imports: [],
7+
templateUrl: './welcome.component.html',
8+
styleUrl: './welcome.component.scss',
9+
})
10+
export class WelcomeComponent {
11+
title = 'Initial Template';
12+
}

src/app/pages/wellcome/wellcome.component.ts

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)