Summarized current issues (#9)
This commit was merged in pull request #9.
This commit is contained in:
Generated
+2
-2
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "angular-portfolio-seite",
|
"name": "angular-portfolio-seite",
|
||||||
"version": "3.0.10",
|
"version": "3.1.11",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "angular-portfolio-seite",
|
"name": "angular-portfolio-seite",
|
||||||
"version": "3.0.10",
|
"version": "3.1.11",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@angular/animations": "^19.2.14",
|
"@angular/animations": "^19.2.14",
|
||||||
"@angular/cdk": "^19.2.19",
|
"@angular/cdk": "^19.2.19",
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import {ApplicationConfig, importProvidersFrom, provideZoneChangeDetection} from '@angular/core';
|
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 {BrowserModule, provideClientHydration, withEventReplay} from '@angular/platform-browser';
|
||||||
|
|
||||||
import {routes} from './app.routes';
|
import {routes} from './app.routes';
|
||||||
@@ -8,7 +8,10 @@ import {provideAnimations} from '@angular/platform-browser/animations';
|
|||||||
export const appConfig: ApplicationConfig = {
|
export const appConfig: ApplicationConfig = {
|
||||||
providers: [
|
providers: [
|
||||||
provideZoneChangeDetection({eventCoalescing: true}),
|
provideZoneChangeDetection({eventCoalescing: true}),
|
||||||
provideRouter(routes),
|
provideRouter(routes, withInMemoryScrolling({
|
||||||
|
anchorScrolling: 'enabled',
|
||||||
|
scrollPositionRestoration: 'top'
|
||||||
|
})),
|
||||||
provideClientHydration(withEventReplay()),
|
provideClientHydration(withEventReplay()),
|
||||||
importProvidersFrom(BrowserModule),
|
importProvidersFrom(BrowserModule),
|
||||||
provideAnimations()
|
provideAnimations()
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
fetchpriority="high"
|
fetchpriority="high"
|
||||||
alt="profile picture"
|
alt="profile picture"
|
||||||
srcset="Logo.webp 1x, Logo.webp 2x"
|
srcset="Logo.webp 1x, Logo.webp 2x"
|
||||||
(click)="openStalkerInfo()" />
|
(click)="openStalkerInfo()"/>
|
||||||
<h1>Hallo! 👋 I'm {{ globalFields.firstname }} {{ globalFields.lastname }}!</h1>
|
<h1>Hallo! 👋 I'm {{ globalFields.firstname }} {{ globalFields.lastname }}!</h1>
|
||||||
<h3>📍 Austria, Vienna</h3>
|
<h3>📍 Austria, Vienna</h3>
|
||||||
|
|
||||||
@@ -70,12 +70,10 @@
|
|||||||
|
|
||||||
<div class="contact-area">
|
<div class="contact-area">
|
||||||
<a [href]="contactSafeMail">
|
<a [href]="contactSafeMail">
|
||||||
<span>
|
<fa-icon class="fab" [icon]="faEnvelope" size="3x"></fa-icon>
|
||||||
<fa-icon [icon]="faEnvelope" size="3x"></fa-icon>
|
|
||||||
</span>
|
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<a href="tel:{{globalFields.hrefContactPhone}}">
|
<a href="tel:{{globalFields.hrefContactTel}}">
|
||||||
<fa-icon class="fab" [icon]="faPhone" size="3x"></fa-icon>
|
<fa-icon class="fab" [icon]="faPhone" size="3x"></fa-icon>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
<br>
|
<br>
|
||||||
|
|
||||||
<h4>Contact:</h4>
|
<h4>Contact:</h4>
|
||||||
Phone: <b><u><a href="tel:{{globalFields.hrefContactPhone}}">{{ globalFields.contactPhone }}</a></u></b> <br>
|
Phone: <b><u><a href="tel:{{globalFields.hrefContactTel}}">{{ globalFields.contactPhone }}</a></u></b> <br>
|
||||||
E-Mail: <b><u><a [href]="contactSafeMail">{{ globalFields.contactMail }}</a></u></b>
|
E-Mail: <b><u><a [href]="contactSafeMail">{{ globalFields.contactMail }}</a></u></b>
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ export class ImprintComponent implements OnInit {
|
|||||||
protected readonly zip: number = 3380;
|
protected readonly zip: number = 3380;
|
||||||
protected readonly city: string = 'Pöchlarn';
|
protected readonly city: string = 'Pöchlarn';
|
||||||
protected readonly country: string = 'Austria';
|
protected readonly country: string = 'Austria';
|
||||||
protected readonly abuseMail: string = 'abuse@fraujulian.xyz';
|
protected readonly abuseMail: string = 'abuse@lechner-systems.at';
|
||||||
|
|
||||||
protected contactSafeMail!: SafeUrl;
|
protected contactSafeMail!: SafeUrl;
|
||||||
protected abuseSafeMail!: SafeUrl;
|
protected abuseSafeMail!: SafeUrl;
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
export class globalFields {
|
export class globalFields {
|
||||||
public static readonly firstname: string = 'Julian';
|
public static readonly firstname: string = 'Julian';
|
||||||
public static readonly lastname: string = 'Lechner';
|
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 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 githubUsername: string = 'FrauJulian';
|
||||||
public static readonly numberOfLoadedRepositories: number = 999;
|
public static readonly numberOfLoadedRepositories: number = 999;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user