Solved conflict of style between PrimeNG and Tailwind, both work together now

This commit is contained in:
AdamBtech
2025-05-19 23:30:56 +02:00
parent a57e6ba1f2
commit 28089215f2
24 changed files with 828 additions and 869 deletions

View File

@@ -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>

View File

@@ -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 {}