Home Page Component

class HomePageComponent

This component is loaded on /. It is a placeholder component without any functionality. Invalid routes are redirected to this component.

Home Page Component
Home Page Component
home-page.component.ts
@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
  }
}

Last updated