diff --git a/src/app/app.routes.ts b/src/app/app.routes.ts index 752d2e1..37ebc1b 100644 --- a/src/app/app.routes.ts +++ b/src/app/app.routes.ts @@ -3,6 +3,7 @@ import { Startpage } from './sites/startpage/startpage'; import { TestIt } from './sites/test-it/test-it'; import { GeneratorPassword } from './sites/generator/password/generator-password.component'; import { GeneratorQrcode } from './sites/generator/qrcode/generator-qrcode'; +import { Comingsoon } from './sites/navbar/comingsoon/comingsoon'; export const routes: Routes = [ { @@ -12,7 +13,13 @@ export const routes: Routes = [ { path: '', component: Startpage, - }, // GENERATORS + }, + // NAVBAR SITES + { + path: 'coming-soon', + component: Comingsoon, + }, + // GENERATORS { path: 'generator/password', component: GeneratorPassword, diff --git a/src/app/sites/navbar/comingsoon/comingsoon.css b/src/app/sites/navbar/comingsoon/comingsoon.css new file mode 100644 index 0000000..e69de29 diff --git a/src/app/sites/navbar/comingsoon/comingsoon.html b/src/app/sites/navbar/comingsoon/comingsoon.html new file mode 100644 index 0000000..7801f75 --- /dev/null +++ b/src/app/sites/navbar/comingsoon/comingsoon.html @@ -0,0 +1,32 @@ +
+
+ +
+ +
+
+

This project is maintained and developed by + me + as an individual developer. New functions and tools will be added as time and inspiration allow. +

+
+

Since I develop this project in my free time, there is no fixed schedule for new features. + Instead, I add new tools and functions when I have a good idea and the time allows. +

+
+
+

Want to suggest a feature?

+
+

Feel free to give me feedback or suggestions for the project! I welcome any suggestions, feedback or features.

+ +
+
+
+
\ No newline at end of file diff --git a/src/app/sites/navbar/comingsoon/comingsoon.spec.ts b/src/app/sites/navbar/comingsoon/comingsoon.spec.ts new file mode 100644 index 0000000..662e8d0 --- /dev/null +++ b/src/app/sites/navbar/comingsoon/comingsoon.spec.ts @@ -0,0 +1,23 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { Comingsoon } from './comingsoon'; + +describe('Comingsoon', () => { + let component: Comingsoon; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + imports: [Comingsoon] + }) + .compileComponents(); + + fixture = TestBed.createComponent(Comingsoon); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/sites/navbar/comingsoon/comingsoon.ts b/src/app/sites/navbar/comingsoon/comingsoon.ts new file mode 100644 index 0000000..38f0551 --- /dev/null +++ b/src/app/sites/navbar/comingsoon/comingsoon.ts @@ -0,0 +1,12 @@ +import { Component } from '@angular/core'; +import { CustomTitle } from "../../../components/custom-title/custom-title"; + +@Component({ + selector: 'app-comingsoon', + imports: [CustomTitle], + templateUrl: './comingsoon.html', + styleUrl: './comingsoon.css', +}) +export class Comingsoon { + +}