sharepulse/frontend/src/app/app.component.ts
Max 704969d041 Added sample UI design
- Added credits component
- Added simple icons
- Made navbar responsive for mobile
- Added credits/upload/download/home/navbar components
- Created simple design for home component
- Added tailwindcss and daisyUI and TailwindCSS
2024-01-28 13:55:39 +01:00

16 lines
443 B
TypeScript

import { Component } from '@angular/core';
import { CommonModule } from '@angular/common';
import { RouterOutlet } from '@angular/router';
import {NavbarComponent} from "./navbar/navbar.component";
@Component({
selector: 'app-root',
standalone: true,
imports: [CommonModule, RouterOutlet, NavbarComponent],
templateUrl: './app.component.html',
styleUrl: './app.component.scss'
})
export class AppComponent {
title = 'frontend';
}