added searchform to header
This commit is contained in:
parent
595eeb2e09
commit
df8edd4a0f
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div id="header" class="flex justify-center items-center w-full py-2">
|
||||||
|
<app-searchform/>
|
||||||
|
</div>
|
||||||
|
|
@ -1,11 +1,12 @@
|
||||||
import { Component, computed, input, signal, Signal } from '@angular/core';
|
import { Component, computed, input, signal, Signal } from '@angular/core';
|
||||||
import { Router, RouterLink } from '@angular/router';
|
import { Router, RouterLink } from '@angular/router';
|
||||||
import { Auth } from '../../services/auth';
|
import { Auth } from '../../services/auth';
|
||||||
|
import { Searchform } from "../../pages/search/searchform/searchform";
|
||||||
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-header',
|
selector: 'app-header',
|
||||||
imports: [RouterLink],
|
imports: [RouterLink, Searchform],
|
||||||
templateUrl: './header.html',
|
templateUrl: './header.html',
|
||||||
styleUrl: './header.css'
|
styleUrl: './header.css'
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue