diff --git a/src/app/app.routes.ts b/src/app/app.routes.ts index 4f31763..51aadb2 100644 --- a/src/app/app.routes.ts +++ b/src/app/app.routes.ts @@ -5,6 +5,7 @@ import { GeneratorPassword } from './sites/generator/password/generator-password import { GeneratorQrcode } from './sites/generator/qrcode/generator-qrcode'; import { Comingsoon } from './sites/navbar/comingsoon/comingsoon'; import { Changelog } from './sites/navbar/changelog/changelog'; +import { About } from './sites/navbar/about/about'; export const routes: Routes = [ { @@ -24,6 +25,10 @@ export const routes: Routes = [ path: 'changelog', component: Changelog, }, + { + path: 'about', + component: About, + }, // GENERATORS { path: 'generator/password', diff --git a/src/app/sites/generator/password/generator-password.component.html b/src/app/sites/generator/password/generator-password.component.html index f552f33..e0a11cd 100644 --- a/src/app/sites/generator/password/generator-password.component.html +++ b/src/app/sites/generator/password/generator-password.component.html @@ -1,4 +1,4 @@ -
+
+
+
+ +
+ +
+
+ Welcome to my Tool Website! This Website provides a collection of useful web-based tools designed to help you with various tasks. + This Website is hosted on Vercel and Open Source. The Source Code is available on GitHub (link below). +
+

Version: 0.3.0

+
+
+ +
+
+ +
+

+ All tools operate entirely in your browser. No data is sent to external servers. + Your data remains on your device and is stored only in your browser's local storage. +

+
+ +
+
+ +
+ + +
+ +
+
+ +
+ +
+

This website is developed and maintained by danielvici123. If you find these tools helpful, you can support the development or check out other projects through the links below:

+ +
+
+
+
diff --git a/src/app/sites/navbar/about/about.spec.ts b/src/app/sites/navbar/about/about.spec.ts new file mode 100644 index 0000000..da5f115 --- /dev/null +++ b/src/app/sites/navbar/about/about.spec.ts @@ -0,0 +1,23 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { About } from './about'; + +describe('About', () => { + let component: About; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + imports: [About] + }) + .compileComponents(); + + fixture = TestBed.createComponent(About); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/sites/navbar/about/about.ts b/src/app/sites/navbar/about/about.ts new file mode 100644 index 0000000..588878a --- /dev/null +++ b/src/app/sites/navbar/about/about.ts @@ -0,0 +1,12 @@ +import { Component } from '@angular/core'; +import { CustomTitle } from "../../../components/custom-title/custom-title"; + +@Component({ + selector: 'app-about', + imports: [CustomTitle], + templateUrl: './about.html', + styleUrl: './about.css', +}) +export class About { + +} diff --git a/src/app/sites/navbar/changelog/changelog.html b/src/app/sites/navbar/changelog/changelog.html index 4f84ade..a29e2ab 100644 --- a/src/app/sites/navbar/changelog/changelog.html +++ b/src/app/sites/navbar/changelog/changelog.html @@ -1,4 +1,4 @@ -
+
+