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:
10
frontend/src/app/credits/credits.component.html
Normal file
10
frontend/src/app/credits/credits.component.html
Normal file
@ -0,0 +1,10 @@
|
||||
<p>credits works!</p>
|
||||
<h2>
|
||||
Used media
|
||||
</h2>
|
||||
<ul>
|
||||
<li>
|
||||
<p>App Icon by flaticon.com</p>
|
||||
<a href="https://www.flaticon.com/de/autoren/najmunnahar">NajmunNahar</a>
|
||||
</li>
|
||||
</ul>
|
0
frontend/src/app/credits/credits.component.scss
Normal file
0
frontend/src/app/credits/credits.component.scss
Normal file
23
frontend/src/app/credits/credits.component.spec.ts
Normal file
23
frontend/src/app/credits/credits.component.spec.ts
Normal file
@ -0,0 +1,23 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { CreditsComponent } from './credits.component';
|
||||
|
||||
describe('CreditsComponent', () => {
|
||||
let component: CreditsComponent;
|
||||
let fixture: ComponentFixture<CreditsComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [CreditsComponent]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(CreditsComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
12
frontend/src/app/credits/credits.component.ts
Normal file
12
frontend/src/app/credits/credits.component.ts
Normal file
@ -0,0 +1,12 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-credits',
|
||||
standalone: true,
|
||||
imports: [],
|
||||
templateUrl: './credits.component.html',
|
||||
styleUrl: './credits.component.scss'
|
||||
})
|
||||
export class CreditsComponent {
|
||||
|
||||
}
|
Reference in New Issue
Block a user