add drag and drop builder

This commit is contained in:
Krrish Ghimire
2026-07-01 01:14:40 +05:45
parent 65f38d68c5
commit 77b32b4d32
31 changed files with 2187 additions and 1 deletions

View File

@@ -20,5 +20,10 @@ export const routes: Routes = [
loadComponent: () => import('./dashboard/dashboard.component').then(m => m.DashboardComponent),
canActivate: [AuthGuard],
},
{
path: 'builder/:siteId',
loadComponent: () => import('./builder/builder.component').then(m => m.BuilderComponent),
canActivate: [AuthGuard],
},
{ path: '**', redirectTo: '/dashboard' },
];