mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 15:40:11 +01:00
21 lines
No EOL
745 B
TypeScript
21 lines
No EOL
745 B
TypeScript
import { Component } from '@angular/core';
|
|
import { NbThemeService } from '@nebular/theme';
|
|
|
|
@Component({
|
|
selector: 'ngx-footer',
|
|
styleUrls: ['./footer.component.scss'],
|
|
template: `
|
|
<span class="created-by">
|
|
Powered by <b><a href="https://marketsoft.com.au" target="_blank">IdentityPulse</a></b> © 2025
|
|
</span>
|
|
<div class="socials">
|
|
<a href="#" target="_blank" class="ion ion-social-github"></a>
|
|
<a href="#" target="_blank" class="ion ion-social-facebook"></a>
|
|
<a href="#" target="_blank" class="ion ion-social-twitter"></a>
|
|
<a href="#" target="_blank" class="ion ion-social-linkedin"></a>
|
|
</div>
|
|
`,
|
|
})
|
|
export class FooterComponent {
|
|
constructor(private themeService: NbThemeService) {}
|
|
} |