Use Tailwind and add a navbar and example component using router

This commit is contained in:
2025-01-23 11:20:23 +01:00
parent 7ee4571dc4
commit db63f46f5d
15 changed files with 693 additions and 358 deletions

View File

@ -1,18 +1,23 @@
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import {NgModule} from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import {AppRoutingModule} from './app-routing.module';
import {AppComponent} from './app.component';
import {HelloComponent} from './hello/hello.component';
import {NavbarComponent} from './navbar/navbar.component';
@NgModule({
declarations: [
AppComponent
AppComponent,
HelloComponent
],
imports: [
BrowserModule,
AppRoutingModule
AppRoutingModule,
NavbarComponent
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
export class AppModule {
}