/** * Copyright (c) 2026, Salesforce, Inc., * All rights reserved. * For full license text, see the LICENSE.txt file */ import { Routes } from '@angular/router'; import { AppLayoutComponent } from './components/layout/app-layout/app-layout'; import { HomeComponent } from './pages/home/home'; import { NotFoundComponent } from './pages/not-found/not-found'; export const routes: Routes = [ { path: '', component: AppLayoutComponent, children: [ { path: '', component: HomeComponent, }, { path: '**', component: NotFoundComponent, }, ], }, ];