change header columns elements in airwatch

This commit is contained in:
Tykayn 2025-08-14 12:18:20 +02:00 committed by tykayn
parent 219fa8c4f9
commit fa8a7ca996
215 changed files with 26292 additions and 45 deletions

View file

@ -0,0 +1,18 @@
<div class="new-input">
<!-- new input-->
<div class="welcome-text">
<div class="welcome-icon">
<!-- <i class="ri-robot-2-line"></i>-->
<img alt="chatbot image" src="/chatbot.png">
</div>
How can we
<span class="emphasis">
assist
</span>
you today?
</div>
<app-prompt-input></app-prompt-input>
<app-tools-options></app-tools-options>
</div>

View file

@ -0,0 +1,23 @@
.new-input {
min-height: 80vh;
padding: 0 200px;
.welcome-text {
margin: 100px;
font-size: 38px;
font-weight: 500;
letter-spacing: -7%;
}
.welcome-icon {
i {
font-size: 3rem;
}
margin-bottom: 1rem;
}
.emphasis {
color: #083b7d;
}
}

View file

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

View file

@ -0,0 +1,16 @@
import { Component } from '@angular/core';
import {PromptInput} from "../prompt-input/prompt-input";
import {ToolsOptions} from "../tools-options/tools-options";
@Component({
selector: 'app-new-input',
imports: [
PromptInput,
ToolsOptions
],
templateUrl: './new-input.html',
styleUrl: './new-input.scss'
})
export class NewInput {
}