mirror of
https://github.com/adam-benyekkou/my_portfolio.git
synced 2026-01-15 20:20:09 +00:00
Removed Primeng in favor of custom made components for easier styling (Too many Tailwind conflicts)
This commit is contained in:
@@ -1,20 +1,8 @@
|
||||
<nav>
|
||||
<section>
|
||||
<p-button
|
||||
label="Neural Profile"
|
||||
(onClick)="onClick()"
|
||||
></p-button>
|
||||
<p-button
|
||||
label="Execute//Directory"
|
||||
(onClick)="onClick()"
|
||||
></p-button>
|
||||
<p-button
|
||||
label="Operative History"
|
||||
(onClick)="onClick()"
|
||||
></p-button>
|
||||
<p-button
|
||||
label="Transmission Link"
|
||||
(onClick)="onClick()"
|
||||
></p-button>
|
||||
<app-button label="Neural Profile" (click)="onClick()"/>
|
||||
<app-button label="Execute//Directory" (click)="onClick()"/>
|
||||
<app-button label="Operative History" (click)="onClick()"/>
|
||||
<app-button label="Transmission Link" (click)="onClick()"/>
|
||||
</section>
|
||||
</nav>
|
||||
|
||||
@@ -1,16 +1,15 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
|
||||
import { ButtonModule } from 'primeng/button';
|
||||
import { ButtonComponent } from '../../../shared/ui/button/button.component';
|
||||
|
||||
@Component({
|
||||
selector: 'app-header-nav-links',
|
||||
imports: [ButtonModule],
|
||||
imports: [ButtonComponent],
|
||||
templateUrl: './header-nav-links.component.html',
|
||||
styleUrl: './header-nav-links.component.css'
|
||||
styleUrl: './header-nav-links.component.css',
|
||||
})
|
||||
export class HeaderNavLinksComponent {
|
||||
onClick(){
|
||||
onClick() {
|
||||
console.log('click');
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user