improve performence; updated information

This commit is contained in:
Julian lechner
2025-07-24 15:08:16 +02:00
parent 595db7c398
commit 31c02fcc65
5 changed files with 8 additions and 12 deletions
+1 -3
View File
@@ -37,9 +37,7 @@
],
"scripts": [],
"server": "src/main.server.ts",
"prerender": {
"routes": ["/", "/imprint"]
},
"prerender": true,
"ssr": {
"entry": "src/server.ts"
}
+2 -2
View File
@@ -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",
-2
View File
@@ -70,9 +70,7 @@
<div class="contact-area">
<a [href]="contactSafeMail">
<span>
<fa-icon [icon]="faEnvelope" size="3x"></fa-icon>
</span>
</a>
<a href="tel:{{globalFields.hrefContactPhone}}">
+1 -1
View File
@@ -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;
+2 -2
View File
@@ -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;
}