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
This commit is contained in:
2024-01-28 13:55:39 +01:00
parent e24d4c34f4
commit 704969d041
31 changed files with 749 additions and 345 deletions

View File

@ -0,0 +1 @@
<p>upload works!</p>

View File

@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { UploadComponent } from './upload.component';
describe('UploadComponent', () => {
let component: UploadComponent;
let fixture: ComponentFixture<UploadComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [UploadComponent]
})
.compileComponents();
fixture = TestBed.createComponent(UploadComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@ -0,0 +1,12 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-upload',
standalone: true,
imports: [],
templateUrl: './upload.component.html',
styleUrl: './upload.component.scss'
})
export class UploadComponent {
}