feat(core): add copyright
This commit is contained in:
@@ -2,7 +2,8 @@
|
||||
"common": {
|
||||
"home": "Startseite",
|
||||
"about": "Über mich",
|
||||
"projects": "Projekte"
|
||||
"projects": "Projekte",
|
||||
"copyright": "© 2025 Nico Haider; Alle Rechte vorbehalten."
|
||||
},
|
||||
"home": {
|
||||
"header": "Hi, ich bin<br/>Nico HAIDER.",
|
||||
|
||||
@@ -2,7 +2,8 @@
|
||||
"common": {
|
||||
"home": "Home",
|
||||
"about": "About",
|
||||
"projects": "Projects"
|
||||
"projects": "Projects",
|
||||
"copyright": "© 2025 Nico Haider; All rights reserved."
|
||||
},
|
||||
"home": {
|
||||
"header": "Hi, I'm<br/>Nico HAIDER.",
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
<div class="flex flex-col min-h-screen">
|
||||
<app-background/>
|
||||
<app-navigation-bar/>
|
||||
<router-outlet/>
|
||||
|
||||
<main class="flex-1">
|
||||
<router-outlet></router-outlet>
|
||||
</main>
|
||||
|
||||
<p class="text-gray text-center p-5">
|
||||
{{ 'common.copyright' | translate }}
|
||||
</p>
|
||||
</div>
|
||||
@@ -3,10 +3,11 @@ import { RouterOutlet } from '@angular/router';
|
||||
import { ThemeSwitchService } from './core/service/theme-switch.service';
|
||||
import { Background } from "./core/components/background/background";
|
||||
import { NavigationBar } from "./core/components/navigation-bar/navigation-bar";
|
||||
import { TranslatePipe } from '@ngx-translate/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-root',
|
||||
imports: [RouterOutlet, Background, NavigationBar],
|
||||
imports: [RouterOutlet, Background, NavigationBar, TranslatePipe],
|
||||
templateUrl: './app.html',
|
||||
})
|
||||
export class App {
|
||||
|
||||
@@ -4,7 +4,3 @@ main {
|
||||
mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
|
||||
}
|
||||
}
|
||||
|
||||
.text-gray {
|
||||
color: rgb(from var(--content-color) r g b / 0.7);
|
||||
}
|
||||
@@ -22,3 +22,7 @@ p-card {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.text-gray {
|
||||
color: rgb(from var(--content-color) r g b / 0.7);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user