diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index 2a58533..800f888 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -1,6 +1,14 @@ import { NgModule } from '@angular/core'; import { RouterModule, Routes } from '@angular/router'; +import { AssignmentComponent } from './pages/dashboard/assignment/assignment.component'; +import { CelebrationComponent } from './pages/dashboard/celebration/celebration.component'; +import { ClosingdocsComponent } from './pages/dashboard/closingdocs/closingdocs.component'; import { DashboardComponent } from './pages/dashboard/dashboard.component'; +import { FinalinterviewComponent } from './pages/dashboard/finalinterview/finalinterview.component'; +import { JoiningletterComponent } from './pages/dashboard/joiningletter/joiningletter.component'; +import { PreliminaryComponent } from './pages/dashboard/preliminary/preliminary.component'; +import { SkillinformationComponent } from './pages/dashboard/skillinformation/skillinformation.component'; +import { TechnicalComponent } from './pages/dashboard/technical/technical.component'; import { LoginComponent } from './pages/onboarding/login/login.component'; import { OtpComponent } from './pages/onboarding/signup/otp/otp.component'; import { SignupComponent } from './pages/onboarding/signup/signup.component'; @@ -13,6 +21,14 @@ const routes: Routes = [ { component: SignupComponent, path: 'signup' }, { component: OtpComponent, path: 'otp' }, { component: DashboardComponent, path: 'dashboard' }, + { component: AssignmentComponent, path: 'dashboard/assignment' }, + { component: PreliminaryComponent, path: 'dashboard/preliminary' }, + { component: CelebrationComponent, path: 'dashboard/celebration' }, + { component: ClosingdocsComponent, path: 'dashboard/closingdocs' }, + { component: JoiningletterComponent, path: 'dashboard/joiningletter' }, + { component: TechnicalComponent, path: 'dashboard/technincalinterview' }, + { component: SkillinformationComponent, path: 'dashboard/skillinformation' }, + { component: FinalinterviewComponent, path: 'dashboard/finaiinterview' }, ]; @NgModule({ diff --git a/src/app/app.module.ts b/src/app/app.module.ts index dcd0625..b7340c1 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -8,6 +8,14 @@ import { LoginComponent } from './pages/onboarding/login/login.component'; import { SignupComponent } from './pages/onboarding/signup/signup.component'; import { DashboardComponent } from './pages/dashboard/dashboard.component'; import { WelcomeComponent } from './pages/onboarding/welcome/welcome.component'; +import { SkillinformationComponent } from './pages/dashboard/skillinformation/skillinformation.component'; +import { PreliminaryComponent } from './pages/dashboard/preliminary/preliminary.component'; +import { TechnicalComponent } from './pages/dashboard/technical/technical.component'; +import { AssignmentComponent } from './pages/dashboard/assignment/assignment.component'; +import { ClosingdocsComponent } from './pages/dashboard/closingdocs/closingdocs.component'; +import { JoiningletterComponent } from './pages/dashboard/joiningletter/joiningletter.component'; +import { CelebrationComponent } from './pages/dashboard/celebration/celebration.component'; +import { FinalinterviewComponent } from './pages/dashboard/finalinterview/finalinterview.component'; @NgModule({ declarations: [ @@ -17,6 +25,14 @@ import { WelcomeComponent } from './pages/onboarding/welcome/welcome.component'; SignupComponent, DashboardComponent, WelcomeComponent, + SkillinformationComponent, + PreliminaryComponent, + TechnicalComponent, + AssignmentComponent, + ClosingdocsComponent, + JoiningletterComponent, + CelebrationComponent, + FinalinterviewComponent, ], imports: [ BrowserModule, diff --git a/src/app/pages/dashboard/_commonheader.scss b/src/app/pages/dashboard/_commonheader.scss new file mode 100644 index 0000000..0123dac --- /dev/null +++ b/src/app/pages/dashboard/_commonheader.scss @@ -0,0 +1,48 @@ +@import "../../../theme"; + +header { + background-color: $background-color; + display: flex; + align-items: center; + justify-content: space-between; + height: 70px; + top: 0; + left: 0; + padding: 0 10px; + + .logo { + display: flex; + flex-direction: column; + padding: 6px 10px; + + h5 { + font-family: "Oswald", sans-serif; + color: $text-color; + font-weight: 100; + left: 0; + letter-spacing: 1.5px; + font-size: 21px; + } + span { + color: $white; + font-family: "Poppins", sans-serif; + font-size: 12px; + font-weight:500; + } + } + + .cross-icon { + button { + border: none; + background-color: transparent; + width: 30px; + height: 30px; + margin: 14px; + cursor: pointer; + } + img { + width: 30px; + // padding-left: 10px; + } + } +} diff --git a/src/app/pages/dashboard/assignment/assignment.component.html b/src/app/pages/dashboard/assignment/assignment.component.html new file mode 100644 index 0000000..86f8696 --- /dev/null +++ b/src/app/pages/dashboard/assignment/assignment.component.html @@ -0,0 +1 @@ +

assignment works!

diff --git a/src/app/pages/dashboard/assignment/assignment.component.scss b/src/app/pages/dashboard/assignment/assignment.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/pages/dashboard/assignment/assignment.component.spec.ts b/src/app/pages/dashboard/assignment/assignment.component.spec.ts new file mode 100644 index 0000000..1e59508 --- /dev/null +++ b/src/app/pages/dashboard/assignment/assignment.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { AssignmentComponent } from './assignment.component'; + +describe('AssignmentComponent', () => { + let component: AssignmentComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ AssignmentComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(AssignmentComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/pages/dashboard/assignment/assignment.component.ts b/src/app/pages/dashboard/assignment/assignment.component.ts new file mode 100644 index 0000000..a73d72f --- /dev/null +++ b/src/app/pages/dashboard/assignment/assignment.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-assignment', + templateUrl: './assignment.component.html', + styleUrls: ['./assignment.component.scss'] +}) +export class AssignmentComponent implements OnInit { + + constructor() { } + + ngOnInit(): void { + } + +} diff --git a/src/app/pages/dashboard/celebration/celebration.component.html b/src/app/pages/dashboard/celebration/celebration.component.html new file mode 100644 index 0000000..0020651 --- /dev/null +++ b/src/app/pages/dashboard/celebration/celebration.component.html @@ -0,0 +1 @@ +

celebration works!

diff --git a/src/app/pages/dashboard/celebration/celebration.component.scss b/src/app/pages/dashboard/celebration/celebration.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/pages/dashboard/celebration/celebration.component.spec.ts b/src/app/pages/dashboard/celebration/celebration.component.spec.ts new file mode 100644 index 0000000..aeef40d --- /dev/null +++ b/src/app/pages/dashboard/celebration/celebration.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { CelebrationComponent } from './celebration.component'; + +describe('CelebrationComponent', () => { + let component: CelebrationComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ CelebrationComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(CelebrationComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/pages/dashboard/celebration/celebration.component.ts b/src/app/pages/dashboard/celebration/celebration.component.ts new file mode 100644 index 0000000..31ea657 --- /dev/null +++ b/src/app/pages/dashboard/celebration/celebration.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-celebration', + templateUrl: './celebration.component.html', + styleUrls: ['./celebration.component.scss'] +}) +export class CelebrationComponent implements OnInit { + + constructor() { } + + ngOnInit(): void { + } + +} diff --git a/src/app/pages/dashboard/closingdocs/closingdocs.component.html b/src/app/pages/dashboard/closingdocs/closingdocs.component.html new file mode 100644 index 0000000..7986ffb --- /dev/null +++ b/src/app/pages/dashboard/closingdocs/closingdocs.component.html @@ -0,0 +1 @@ +

closingdocs works!

diff --git a/src/app/pages/dashboard/closingdocs/closingdocs.component.scss b/src/app/pages/dashboard/closingdocs/closingdocs.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/pages/dashboard/closingdocs/closingdocs.component.spec.ts b/src/app/pages/dashboard/closingdocs/closingdocs.component.spec.ts new file mode 100644 index 0000000..d1bf83e --- /dev/null +++ b/src/app/pages/dashboard/closingdocs/closingdocs.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { ClosingdocsComponent } from './closingdocs.component'; + +describe('ClosingdocsComponent', () => { + let component: ClosingdocsComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ ClosingdocsComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(ClosingdocsComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/pages/dashboard/closingdocs/closingdocs.component.ts b/src/app/pages/dashboard/closingdocs/closingdocs.component.ts new file mode 100644 index 0000000..4487331 --- /dev/null +++ b/src/app/pages/dashboard/closingdocs/closingdocs.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-closingdocs', + templateUrl: './closingdocs.component.html', + styleUrls: ['./closingdocs.component.scss'] +}) +export class ClosingdocsComponent implements OnInit { + + constructor() { } + + ngOnInit(): void { + } + +} diff --git a/src/app/pages/dashboard/dashboard.component.html b/src/app/pages/dashboard/dashboard.component.html index 36465e9..9a1a82f 100644 --- a/src/app/pages/dashboard/dashboard.component.html +++ b/src/app/pages/dashboard/dashboard.component.html @@ -20,7 +20,7 @@

- + \ No newline at end of file diff --git a/src/app/pages/dashboard/dashboard.component.ts b/src/app/pages/dashboard/dashboard.component.ts index d2e6cbc..d908098 100644 --- a/src/app/pages/dashboard/dashboard.component.ts +++ b/src/app/pages/dashboard/dashboard.component.ts @@ -10,61 +10,53 @@ export class DashboardComponent implements OnInit { selectedSegment: number = 0; selectedSteps = [{ - step: 1, heading: 'Skill Information', imageSrc: 'assets/skill information.svg', content: "

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

", redirectText: "Let's start now!", - redirectUrl: '/welcome' + redirectUrl: '/dashboard/skillinformation/' }, { - step: 2, heading: 'Preliminary Round', imageSrc: 'assets/Preliminary Round.svg', content: "

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

", redirectText: 'Lets do this!', - redirectUrl: '' + redirectUrl: 'dashboard/preliminary' }, { - step: 3, heading: 'Technical Interview', imageSrc: 'assets/Technical Interview.svg', content: "

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

", redirectText: 'Schedule meeting!', - redirectUrl: '' + redirectUrl: 'dashboard/technincalround' }, { - step: 4, heading: 'Assignment', imageSrc: 'assets/Assignment.svg', content: "

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

", redirectText: 'Show details!', - redirectUrl: '' + redirectUrl: 'dashboard/assignment' }, { - step: 5, heading: 'Final Interview', imageSrc: 'assets/Final Interview.svg', content: "

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

", redirectText: 'Schedule meeting!', - redirectUrl: '' + redirectUrl: 'dashboard/finaiinterview' }, { - step: 6, heading: 'Closing Docs', imageSrc: 'assets/Closing Docs.svg', content: "

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

", redirectText: 'Upload docs!', - redirectUrl: '' + redirectUrl: 'dashboard/closingdocs' }, { - step: 7, heading: 'Joining Letter', imageSrc: 'assets/Joining Letter.svg', content: "

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

", redirectText: 'Show details', - redirectUrl: '' + redirectUrl: 'dashboard/joiningletter' }, { - step: 8, heading: 'Celebrations', imageSrc: 'assets/Celebrations.svg', content: "

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

", redirectText: 'Join Workex', - redirectUrl: '' + redirectUrl: 'dashboard/celebration' }] ngOnInit(): void { diff --git a/src/app/pages/dashboard/finalinterview/finalinterview.component.html b/src/app/pages/dashboard/finalinterview/finalinterview.component.html new file mode 100644 index 0000000..31ada37 --- /dev/null +++ b/src/app/pages/dashboard/finalinterview/finalinterview.component.html @@ -0,0 +1 @@ +

finalinterview works!

diff --git a/src/app/pages/dashboard/finalinterview/finalinterview.component.scss b/src/app/pages/dashboard/finalinterview/finalinterview.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/pages/dashboard/finalinterview/finalinterview.component.spec.ts b/src/app/pages/dashboard/finalinterview/finalinterview.component.spec.ts new file mode 100644 index 0000000..05ae1d2 --- /dev/null +++ b/src/app/pages/dashboard/finalinterview/finalinterview.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { FinalinterviewComponent } from './finalinterview.component'; + +describe('FinalinterviewComponent', () => { + let component: FinalinterviewComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ FinalinterviewComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(FinalinterviewComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/pages/dashboard/finalinterview/finalinterview.component.ts b/src/app/pages/dashboard/finalinterview/finalinterview.component.ts new file mode 100644 index 0000000..496bf5c --- /dev/null +++ b/src/app/pages/dashboard/finalinterview/finalinterview.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-finalinterview', + templateUrl: './finalinterview.component.html', + styleUrls: ['./finalinterview.component.scss'] +}) +export class FinalinterviewComponent implements OnInit { + + constructor() { } + + ngOnInit(): void { + } + +} diff --git a/src/app/pages/dashboard/joiningletter/joiningletter.component.html b/src/app/pages/dashboard/joiningletter/joiningletter.component.html new file mode 100644 index 0000000..e0cd473 --- /dev/null +++ b/src/app/pages/dashboard/joiningletter/joiningletter.component.html @@ -0,0 +1 @@ +

joiningletter works!

diff --git a/src/app/pages/dashboard/joiningletter/joiningletter.component.scss b/src/app/pages/dashboard/joiningletter/joiningletter.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/pages/dashboard/joiningletter/joiningletter.component.spec.ts b/src/app/pages/dashboard/joiningletter/joiningletter.component.spec.ts new file mode 100644 index 0000000..b30d7df --- /dev/null +++ b/src/app/pages/dashboard/joiningletter/joiningletter.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { JoiningletterComponent } from './joiningletter.component'; + +describe('JoiningletterComponent', () => { + let component: JoiningletterComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ JoiningletterComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(JoiningletterComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/pages/dashboard/joiningletter/joiningletter.component.ts b/src/app/pages/dashboard/joiningletter/joiningletter.component.ts new file mode 100644 index 0000000..eff66dc --- /dev/null +++ b/src/app/pages/dashboard/joiningletter/joiningletter.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-joiningletter', + templateUrl: './joiningletter.component.html', + styleUrls: ['./joiningletter.component.scss'] +}) +export class JoiningletterComponent implements OnInit { + + constructor() { } + + ngOnInit(): void { + } + +} diff --git a/src/app/pages/dashboard/preliminary/preliminary.component.html b/src/app/pages/dashboard/preliminary/preliminary.component.html new file mode 100644 index 0000000..26bad01 --- /dev/null +++ b/src/app/pages/dashboard/preliminary/preliminary.component.html @@ -0,0 +1 @@ +

preliminary works!

diff --git a/src/app/pages/dashboard/preliminary/preliminary.component.scss b/src/app/pages/dashboard/preliminary/preliminary.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/pages/dashboard/preliminary/preliminary.component.spec.ts b/src/app/pages/dashboard/preliminary/preliminary.component.spec.ts new file mode 100644 index 0000000..0901e31 --- /dev/null +++ b/src/app/pages/dashboard/preliminary/preliminary.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { PreliminaryComponent } from './preliminary.component'; + +describe('PreliminaryComponent', () => { + let component: PreliminaryComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ PreliminaryComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(PreliminaryComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/pages/dashboard/preliminary/preliminary.component.ts b/src/app/pages/dashboard/preliminary/preliminary.component.ts new file mode 100644 index 0000000..862c3b4 --- /dev/null +++ b/src/app/pages/dashboard/preliminary/preliminary.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-preliminary', + templateUrl: './preliminary.component.html', + styleUrls: ['./preliminary.component.scss'] +}) +export class PreliminaryComponent implements OnInit { + + constructor() { } + + ngOnInit(): void { + } + +} diff --git a/src/app/pages/dashboard/skillinformation/skillinformation.component.html b/src/app/pages/dashboard/skillinformation/skillinformation.component.html new file mode 100644 index 0000000..c1907de --- /dev/null +++ b/src/app/pages/dashboard/skillinformation/skillinformation.component.html @@ -0,0 +1,17 @@ +
+ +
+ +
+
+ +
+

What are we good at?

+

Please note that you should have knowledge of at least 1 tech stack in each category & must know the basics of + HTML/CSS/JS, Git.

+
\ No newline at end of file diff --git a/src/app/pages/dashboard/skillinformation/skillinformation.component.scss b/src/app/pages/dashboard/skillinformation/skillinformation.component.scss new file mode 100644 index 0000000..48f676e --- /dev/null +++ b/src/app/pages/dashboard/skillinformation/skillinformation.component.scss @@ -0,0 +1,2 @@ +@import '../commonheader'; +@import '../../../../theme'; \ No newline at end of file diff --git a/src/app/pages/dashboard/skillinformation/skillinformation.component.spec.ts b/src/app/pages/dashboard/skillinformation/skillinformation.component.spec.ts new file mode 100644 index 0000000..49e3f32 --- /dev/null +++ b/src/app/pages/dashboard/skillinformation/skillinformation.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { SkillinformationComponent } from './skillinformation.component'; + +describe('SkillinformationComponent', () => { + let component: SkillinformationComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ SkillinformationComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(SkillinformationComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/pages/dashboard/skillinformation/skillinformation.component.ts b/src/app/pages/dashboard/skillinformation/skillinformation.component.ts new file mode 100644 index 0000000..cec6e82 --- /dev/null +++ b/src/app/pages/dashboard/skillinformation/skillinformation.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-skillinformation', + templateUrl: './skillinformation.component.html', + styleUrls: ['./skillinformation.component.scss'] +}) +export class SkillinformationComponent implements OnInit { + + constructor() { } + + ngOnInit(): void { + } + +} diff --git a/src/app/pages/dashboard/technical/technical.component.html b/src/app/pages/dashboard/technical/technical.component.html new file mode 100644 index 0000000..57d2d61 --- /dev/null +++ b/src/app/pages/dashboard/technical/technical.component.html @@ -0,0 +1 @@ +

technical works!

diff --git a/src/app/pages/dashboard/technical/technical.component.scss b/src/app/pages/dashboard/technical/technical.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/pages/dashboard/technical/technical.component.spec.ts b/src/app/pages/dashboard/technical/technical.component.spec.ts new file mode 100644 index 0000000..21fe4d2 --- /dev/null +++ b/src/app/pages/dashboard/technical/technical.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { TechnicalComponent } from './technical.component'; + +describe('TechnicalComponent', () => { + let component: TechnicalComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ TechnicalComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(TechnicalComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/pages/dashboard/technical/technical.component.ts b/src/app/pages/dashboard/technical/technical.component.ts new file mode 100644 index 0000000..9372433 --- /dev/null +++ b/src/app/pages/dashboard/technical/technical.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-technical', + templateUrl: './technical.component.html', + styleUrls: ['./technical.component.scss'] +}) +export class TechnicalComponent implements OnInit { + + constructor() { } + + ngOnInit(): void { + } + +} diff --git a/src/assets/close_icon..svg b/src/assets/close_icon..svg new file mode 100644 index 0000000..7aca11c --- /dev/null +++ b/src/assets/close_icon..svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/close_white_18dp.svg b/src/assets/close_white_18dp.svg new file mode 100644 index 0000000..8fd675d --- /dev/null +++ b/src/assets/close_white_18dp.svg @@ -0,0 +1 @@ + \ No newline at end of file