update layout navbar and sidebar
This commit is contained in:
parent
503186e733
commit
7aea7a8131
14 changed files with 397 additions and 24 deletions
|
|
@ -1,10 +1,17 @@
|
|||
import { Component, OnInit } from '@angular/core';
|
||||
import { Title } from '@angular/platform-browser';
|
||||
import { initFlowbite } from 'flowbite';
|
||||
|
||||
@Component({
|
||||
selector: 'app-root',
|
||||
templateUrl: './app.component.html',
|
||||
styleUrls: ['./app.component.css'],
|
||||
})
|
||||
export class AppComponent {
|
||||
title = 'Recipe Manager';
|
||||
export class AppComponent implements OnInit {
|
||||
constructor(private titleService: Title) {}
|
||||
|
||||
ngOnInit(): void {
|
||||
this.titleService.setTitle('Recipe Manager | Tao Bin');
|
||||
initFlowbite();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue