Add new components for AI and tutorials, update routing, and enhance file upload functionality

This commit is contained in:
liosha84
2025-08-04 10:38:46 +03:00
parent 18c6906637
commit 483d029952
206 changed files with 2362 additions and 1199 deletions
@@ -0,0 +1,22 @@
import {RouterModule, Routes} from '@angular/router';
import {AiMainComponent} from './ai-main.component/ai-main.component';
const AI_ROUTES: Routes = [
{
path: '',
component: AiMainComponent,
children: [
{
path: 'ai-welcome',
loadComponent: () => import('../ai-module/ai-welcome.component/ai-welcome.component').then((c) => c.AiWelcomeComponent),
},
{
path: 'generate-image',
loadComponent: () => import('../ai-module/generate-image.component/generate-image.component').then((c) => c.GenerateImageComponent)
}
]
}
];
export const aiRouting = RouterModule.forChild(AI_ROUTES);