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:
1
frontend/src/app/download/download.component.html
Normal file
1
frontend/src/app/download/download.component.html
Normal file
@ -0,0 +1 @@
|
||||
<p>download works!</p>
|
0
frontend/src/app/download/download.component.scss
Normal file
0
frontend/src/app/download/download.component.scss
Normal file
23
frontend/src/app/download/download.component.spec.ts
Normal file
23
frontend/src/app/download/download.component.spec.ts
Normal file
@ -0,0 +1,23 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { DownloadComponent } from './download.component';
|
||||
|
||||
describe('DownloadComponent', () => {
|
||||
let component: DownloadComponent;
|
||||
let fixture: ComponentFixture<DownloadComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [DownloadComponent]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(DownloadComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
12
frontend/src/app/download/download.component.ts
Normal file
12
frontend/src/app/download/download.component.ts
Normal file
@ -0,0 +1,12 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-download',
|
||||
standalone: true,
|
||||
imports: [],
|
||||
templateUrl: './download.component.html',
|
||||
styleUrl: './download.component.scss'
|
||||
})
|
||||
export class DownloadComponent {
|
||||
|
||||
}
|
Reference in New Issue
Block a user