diff --git a/src/app/app.css b/src/app/app.css index e69de29..2b28a8f 100644 --- a/src/app/app.css +++ b/src/app/app.css @@ -0,0 +1,6 @@ + + +main { + margin: 2rem; + display: flex; +} diff --git a/src/app/app.html b/src/app/app.html index f8b52d0..8937551 100644 --- a/src/app/app.html +++ b/src/app/app.html @@ -1,2 +1,22 @@ - - + +
+ +
+ +
+ + +
+ +
+ + +
+ \ No newline at end of file diff --git a/src/app/app.ts b/src/app/app.ts index b61fe17..53332d9 100644 --- a/src/app/app.ts +++ b/src/app/app.ts @@ -2,10 +2,11 @@ import { Component, computed, Signal, signal } from '@angular/core'; import { RouterOutlet } from '@angular/router'; import { Auth } from './services/auth'; import { Header } from './shared/header/header'; +import { Sidebar } from "./shared/sidebar/sidebar"; @Component({ selector: 'app-root', - imports: [RouterOutlet, Header], + imports: [RouterOutlet, Header, Sidebar], templateUrl: './app.html', styleUrl: './app.css' }) diff --git a/src/styles.css b/src/styles.css index 74d8662..cd155af 100644 --- a/src/styles.css +++ b/src/styles.css @@ -1,2 +1,7 @@ @import "tailwindcss"; -@plugin "daisyui"; \ No newline at end of file +@plugin "daisyui"; + +html { + background: #000000; + background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(130, 21, 21, 1) 66%, rgb(223, 47, 38) 100%); +} \ No newline at end of file