General angular component structure of the Scifi template src Folder.
Root:shared/layouts/content-layout.component.ts
import {Component,ElementRef,Renderer2,TemplateRef,inject} from '@angular/core'; @Component({ selector: 'app-content-layout', templateUrl: './content-layout.component.html', styleUrl: './content-layout.component.scss', }) export class ContentLayoutComponent { private offcanvasService = inject(NgbOffcanvas); ... }