2024-12-30 12:00:11 +03:00
|
|
|
import {Component, inject} from '@angular/core';
|
2022-07-22 13:13:50 +03:00
|
|
|
import { LayoutService } from "./service/app.layout.service";
|
|
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'app-footer',
|
2024-12-30 12:00:11 +03:00
|
|
|
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>`
|
2022-07-22 13:13:50 +03:00
|
|
|
})
|
|
|
|
|
export class AppFooterComponent {
|
2024-12-30 12:00:11 +03:00
|
|
|
layoutService = inject(LayoutService);
|
2022-07-22 13:13:50 +03:00
|
|
|
}
|