diff --git a/package-lock.json b/package-lock.json index efc461b..fed9128 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "angular-portfolio-seite", - "version": "3.0.10", + "version": "3.1.11", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "angular-portfolio-seite", - "version": "3.0.10", + "version": "3.1.11", "dependencies": { "@angular/animations": "^19.2.14", "@angular/cdk": "^19.2.19", diff --git a/src/app/app.config.ts b/src/app/app.config.ts index d1d4f3c..24fa5b8 100644 --- a/src/app/app.config.ts +++ b/src/app/app.config.ts @@ -1,5 +1,5 @@ import {ApplicationConfig, importProvidersFrom, provideZoneChangeDetection} from '@angular/core'; -import {provideRouter} from '@angular/router'; +import {provideRouter, withInMemoryScrolling} from '@angular/router'; import {BrowserModule, provideClientHydration, withEventReplay} from '@angular/platform-browser'; import {routes} from './app.routes'; @@ -8,7 +8,10 @@ import {provideAnimations} from '@angular/platform-browser/animations'; export const appConfig: ApplicationConfig = { providers: [ provideZoneChangeDetection({eventCoalescing: true}), - provideRouter(routes), + provideRouter(routes, withInMemoryScrolling({ + anchorScrolling: 'enabled', + scrollPositionRestoration: 'top' + })), provideClientHydration(withEventReplay()), importProvidersFrom(BrowserModule), provideAnimations() diff --git a/src/app/home/home.component.html b/src/app/home/home.component.html index 5f6c493..40cc4cb 100644 --- a/src/app/home/home.component.html +++ b/src/app/home/home.component.html @@ -9,7 +9,7 @@ fetchpriority="high" alt="profile picture" srcset="Logo.webp 1x, Logo.webp 2x" - (click)="openStalkerInfo()" /> + (click)="openStalkerInfo()"/>

Hallo! 👋 I'm {{ globalFields.firstname }} {{ globalFields.lastname }}!

📍 Austria, Vienna

@@ -70,12 +70,10 @@
- - - + - + diff --git a/src/app/imprint/imprint.component.html b/src/app/imprint/imprint.component.html index a79706f..32ecaa4 100644 --- a/src/app/imprint/imprint.component.html +++ b/src/app/imprint/imprint.component.html @@ -13,7 +13,7 @@

Contact:

- Phone: {{ globalFields.contactPhone }}
+ Phone: {{ globalFields.contactPhone }}
E-Mail: {{ globalFields.contactMail }}
diff --git a/src/app/imprint/imprint.component.ts b/src/app/imprint/imprint.component.ts index a7c33b6..32ebf47 100644 --- a/src/app/imprint/imprint.component.ts +++ b/src/app/imprint/imprint.component.ts @@ -23,7 +23,7 @@ export class ImprintComponent implements OnInit { protected readonly zip: number = 3380; protected readonly city: string = 'Pöchlarn'; protected readonly country: string = 'Austria'; - protected readonly abuseMail: string = 'abuse@fraujulian.xyz'; + protected readonly abuseMail: string = 'abuse@lechner-systems.at'; protected contactSafeMail!: SafeUrl; protected abuseSafeMail!: SafeUrl; diff --git a/src/global.fields.ts b/src/global.fields.ts index b934913..2d34940 100644 --- a/src/global.fields.ts +++ b/src/global.fields.ts @@ -1,9 +1,9 @@ export class globalFields { public static readonly firstname: string = 'Julian'; public static readonly lastname: string = 'Lechner'; - public static readonly contactMail: string = 'contact@fraujulian.xyz'; + public static readonly contactMail: string = 'office@lechner-systems.at'; public static readonly contactPhone: string = '+43 (0) 660 9254001'; - public static readonly hrefContactPhone: string = 'contact@fraujulian.xyz'; + public static readonly hrefContactTel: string = '+436609254001'; public static readonly githubUsername: string = 'FrauJulian'; public static readonly numberOfLoadedRepositories: number = 999; }