Implement admin and user sidebars with routing and styling updates

This commit is contained in:
liosha84
2025-07-19 17:23:11 +03:00
parent 70338eae0b
commit 88f0cf307e
26 changed files with 540 additions and 120 deletions
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { AdminModuleService } from './admin-module.service';
describe('AdminModuleService', () => {
let service: AdminModuleService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(AdminModuleService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});