Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | 1x | import { Component } from '@angular/core'; import { CvAboutMeComponent } from '../cv-about-me/cv-about-me.component'; import { CvSkillsComponent } from '../cv-skills/cv-skills.component'; import { CvContactInfoComponent } from '../cv-contact-info/cv-contact-info.component'; import { CvImgComponent } from '../cv-img/cv-img.component'; import { CvTestimonialsComponent } from '../cv-testimonials/cv-testimonials.component'; /** Component displaying the entire CV page content. */ @Component({ selector: 'app-page-content', templateUrl: './page-content.component.html', styleUrls: ['./page-content.component.css'], standalone: true, imports: [ CvAboutMeComponent, CvSkillsComponent, CvContactInfoComponent, CvImgComponent, CvTestimonialsComponent, ], }) export class PageContentComponent {} |