Text Extraction Done, UI Fixes Done, Extracted Template Layout Saved in DB

This commit is contained in:
2026-07-12 14:24:17 +05:30
parent 3163bb213e
commit 3d6614f408
79 changed files with 3139 additions and 81 deletions

View File

@@ -3,6 +3,7 @@ import { LoginComponent } from './login/login.component';
import { DashboardComponent } from './pages/dashboard/dashboard.component';
import { OcrComponent } from './ocr/ocr.component';
import { MailboxComponent } from './mailbox/mailbox.component';
import { TemplatesComponent } from './templates/templates.component';
import { AuthorizeComponent } from './pages/session/auth/authorize.component';
import { AuthorizeGuard } from './interceptors/authorize.guard';
@@ -23,7 +24,8 @@ export const routes: Routes = [
children: [
{ path: 'profile', component: ProfileComponent },
{ path: 'mailbox', component: MailboxComponent },
{ path: 'ocr', component: OcrComponent }
{ path: 'ocr', component: OcrComponent },
{ path: 'templates', component: TemplatesComponent }
]
},
{ path: 'account',