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