class HomePageComponent
Last updated 2 months ago
This component is loaded on /. It is a placeholder component without any functionality. Invalid routes are redirected to this component.
/
@Component({ imports: [ // Buy to unlock ], selector: 'jet-home-page', standalone: true, styleUrl: './home-page.component.scss', templateUrl: './home-page.component.html', }) export class HomePageComponent { private readonly _loggerService = inject(LoggerService); public constructor() { // Buy to unlock } }