From 31c02fcc653aafe31bae5d1de53a0cc7d0f5ef20 Mon Sep 17 00:00:00 2001 From: Julian lechner Date: Thu, 24 Jul 2025 15:08:16 +0200 Subject: [PATCH] improve performence; updated information --- angular.json | 4 +--- package-lock.json | 4 ++-- src/app/home/home.component.html | 6 ++---- src/app/imprint/imprint.component.ts | 2 +- src/global.fields.ts | 4 ++-- 5 files changed, 8 insertions(+), 12 deletions(-) diff --git a/angular.json b/angular.json index 845bdba..3fa3689 100644 --- a/angular.json +++ b/angular.json @@ -37,9 +37,7 @@ ], "scripts": [], "server": "src/main.server.ts", - "prerender": { - "routes": ["/", "/imprint"] - }, + "prerender": true, "ssr": { "entry": "src/server.ts" } 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/home/home.component.html b/src/app/home/home.component.html index 5f6c493..9e1d3b2 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,9 +70,7 @@
- - - + 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..83c85c1 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 hrefContactPhone: string = '+436609254001'; public static readonly githubUsername: string = 'FrauJulian'; public static readonly numberOfLoadedRepositories: number = 999; }