ADDED website templates #1

This commit is contained in:
Marek Lesko
2025-07-13 09:32:53 +00:00
parent e467247175
commit 9201f49b5b
330 changed files with 35271 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import { Routes } from '@angular/router';
import { StarterComponent } from './starter/starter.component';
export const PagesRoutes: Routes = [
{
path: '',
component: StarterComponent,
data: {
title: 'Starter Page',
urls: [
{ title: 'Dashboard', url: '/dashboards/dashboard1' },
{ title: 'Starter Page' },
],
},
},
];