This commit is contained in:
19
src/app/features/portfolio/portfolio-page.component.ts
Normal file
19
src/app/features/portfolio/portfolio-page.component.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
||||
import { PageShellComponent } from '../../core/layout/page-shell.component';
|
||||
import { PortfolioSectionComponent } from './portfolio-section.component';
|
||||
import { MAIN_NAVIGATION } from '../../shared/config/navigation.config';
|
||||
|
||||
@Component({
|
||||
selector: 'app-portfolio-page',
|
||||
standalone: true,
|
||||
imports: [PageShellComponent, PortfolioSectionComponent],
|
||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||
template: `
|
||||
<app-page-shell [sections]="sections">
|
||||
<app-portfolio-section />
|
||||
</app-page-shell>
|
||||
`
|
||||
})
|
||||
export class PortfolioPageComponent {
|
||||
readonly sections = MAIN_NAVIGATION;
|
||||
}
|
||||
Reference in New Issue
Block a user