Add layout

This commit is contained in:
Çetin
2024-12-30 12:00:11 +03:00
parent 0369931355
commit 695219ba90
136 changed files with 70 additions and 7216 deletions
+10 -3
View File
@@ -1,10 +1,17 @@
import { Component } from '@angular/core';
import {Component, inject} from '@angular/core';
import { LayoutService } from "./service/app.layout.service";
@Component({
selector: 'app-footer',
templateUrl: './app.footer.component.html'
standalone: true,
providers: [LayoutService],
template: `
<div class="layout-footer">
<img src="assets/layout/images/{{layoutService.config().colorScheme === 'light' ? 'logo-dark' : 'logo-white'}}.svg" alt="Logo" height="20" class="mr-2"/>
by
<span class="font-medium ml-2">PrimeNG</span>
</div>`
})
export class AppFooterComponent {
constructor(public layoutService: LayoutService) { }
layoutService = inject(LayoutService);
}