import { Component } from '@angular/core'; import { NbThemeService } from '@nebular/theme'; @Component({ selector: 'ngx-footer', styleUrls: ['./footer.component.scss'], template: ` Powered by IdentityPulse © 2025
`, }) export class FooterComponent { constructor(private themeService: NbThemeService) {} }