add: changelog; change: coming soon, Styling, navbar styling

This commit is contained in:
danielvici123
2025-11-21 17:24:33 +01:00
parent 62c3513d67
commit 595f66d9d6
13 changed files with 160 additions and 17 deletions

View File

@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { Changelog } from './changelog';
describe('Changelog', () => {
let component: Changelog;
let fixture: ComponentFixture<Changelog>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [Changelog]
})
.compileComponents();
fixture = TestBed.createComponent(Changelog);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});