mirror of
https://github.com/adam-benyekkou/my_portfolio.git
synced 2026-01-16 04:30:08 +00:00
Solved conflict of style between PrimeNG and Tailwind, both work together now
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
<header>
|
||||
<p>header works!</p>
|
||||
<app-header-logo />
|
||||
<app-header-text-animate-section />
|
||||
<app-header-nav-links />
|
||||
<app-header-contact-links />
|
||||
</header>
|
||||
|
||||
@@ -1,11 +1,18 @@
|
||||
import { Component } from '@angular/core';
|
||||
import { HeaderNavLinksComponent } from '../../../features/header-display/header-nav-links/header-nav-links.component';
|
||||
import { HeaderLogoComponent } from '../../../features/header-display/header-logo/header-logo.component';
|
||||
import { HeaderContactLinksComponent } from '../../../features/header-display/header-contact-links/header-contact-links.component';
|
||||
import { HeaderTextAnimateSectionComponent } from '../../../features/header-display/header-text-animate-section/header-text-animate-section.component';
|
||||
|
||||
@Component({
|
||||
selector: 'app-header',
|
||||
imports: [],
|
||||
imports: [
|
||||
HeaderNavLinksComponent,
|
||||
HeaderLogoComponent,
|
||||
HeaderContactLinksComponent,
|
||||
HeaderTextAnimateSectionComponent,
|
||||
],
|
||||
templateUrl: './header.component.html',
|
||||
styleUrl: './header.component.css'
|
||||
styleUrl: './header.component.css',
|
||||
})
|
||||
export class HeaderComponent {
|
||||
|
||||
}
|
||||
export class HeaderComponent {}
|
||||
|
||||
Reference in New Issue
Block a user