+
+
+ HI
+
+ {{ cat.title }}
+
+
+
+
+ {{ page.title }}
+
+
+
+
+
+
diff --git a/src/app/features/admin/menu-manager/menu-manager.component.scss b/src/app/features/admin/menu-manager/menu-manager.component.scss
new file mode 100644
index 0000000..0627599
--- /dev/null
+++ b/src/app/features/admin/menu-manager/menu-manager.component.scss
@@ -0,0 +1,13 @@
+:host {
+ display: block;
+}
+
+.dlg {
+ display: flex;
+ flex-flow: row wrap;
+ gap: 0.5rem;
+
+ mat-card {
+ height: 100%;
+ }
+}
diff --git a/src/app/features/admin/menu-manager/menu-manager.component.spec.ts b/src/app/features/admin/menu-manager/menu-manager.component.spec.ts
new file mode 100644
index 0000000..1ea620b
--- /dev/null
+++ b/src/app/features/admin/menu-manager/menu-manager.component.spec.ts
@@ -0,0 +1,25 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { MenuManagerComponent } from './menu-manager.component';
+
+describe('MenuManagerComponent', () => {
+ let component: MenuManagerComponent;
+ let fixture: ComponentFixture