diff --git a/package-lock.json b/package-lock.json
index 6e0f8e1..75711e1 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -2011,6 +2011,11 @@
"integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=",
"dev": true
},
+ "angular-svg-icon": {
+ "version": "9.2.0",
+ "resolved": "https://registry.npmjs.org/angular-svg-icon/-/angular-svg-icon-9.2.0.tgz",
+ "integrity": "sha512-ca7dT27kmJYy8vLcRuM8kOzQhLkS+2WOs1kkNw6MoUSyYtYQe0StKAP634Zl/xICPWcka2QtcQ/zSGT7D/jovw=="
+ },
"ansi-colors": {
"version": "3.2.4",
"resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz",
diff --git a/package.json b/package.json
index 2bb1844..8878ae3 100644
--- a/package.json
+++ b/package.json
@@ -19,6 +19,7 @@
"@angular/platform-browser": "~9.1.1",
"@angular/platform-browser-dynamic": "~9.1.1",
"@angular/router": "~9.1.1",
+ "angular-svg-icon": "^9.2.0",
"rxjs": "~6.5.4",
"tslib": "^1.10.0",
"zone.js": "~0.10.2"
diff --git a/src/app/app.component.html b/src/app/app.component.html
index e48d8c1..0680b43 100644
--- a/src/app/app.component.html
+++ b/src/app/app.component.html
@@ -1,534 +1 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
{{ title }} app is running!
-
-
-
-
-
-
-
Resources
-
Here are some links to help you get started:
-
-
-
-
-
Next Steps
-
What do you want to do next with your app?
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Run and Watch Tests
-
-
-
-
-
-
Build for Production
-
-
-
-
-
-
ng generate component xyz
-
ng add @angular/material
-
ng add @angular/pwa
-
ng add _____
-
ng test
-
ng build --prod
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
diff --git a/src/app/app.module.ts b/src/app/app.module.ts
index 2c3ba29..4d31657 100644
--- a/src/app/app.module.ts
+++ b/src/app/app.module.ts
@@ -1,18 +1,22 @@
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
+import { AngularSvgIconModule } from 'angular-svg-icon';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
+import { WelcomeComponent } from './welcome/welcome.component';
@NgModule({
- declarations: [
- AppComponent
- ],
- imports: [
- BrowserModule,
- AppRoutingModule
- ],
- providers: [],
- bootstrap: [AppComponent]
+ declarations: [
+ AppComponent,
+ WelcomeComponent
+ ],
+ imports: [
+ BrowserModule,
+ AppRoutingModule,
+ AngularSvgIconModule.forRoot()
+ ],
+ providers: [],
+ bootstrap: [AppComponent]
})
export class AppModule { }
diff --git a/src/app/welcome/welcome.component.html b/src/app/welcome/welcome.component.html
new file mode 100644
index 0000000..6b4f37e
--- /dev/null
+++ b/src/app/welcome/welcome.component.html
@@ -0,0 +1 @@
+welcome works!
diff --git a/src/app/welcome/welcome.component.scss b/src/app/welcome/welcome.component.scss
new file mode 100644
index 0000000..e69de29
diff --git a/src/app/welcome/welcome.component.spec.ts b/src/app/welcome/welcome.component.spec.ts
new file mode 100644
index 0000000..eb910c6
--- /dev/null
+++ b/src/app/welcome/welcome.component.spec.ts
@@ -0,0 +1,25 @@
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { WelcomeComponent } from './welcome.component';
+
+describe('WelcomeComponent', () => {
+ let component: WelcomeComponent;
+ let fixture: ComponentFixture;
+
+ beforeEach(async(() => {
+ TestBed.configureTestingModule({
+ declarations: [ WelcomeComponent ]
+ })
+ .compileComponents();
+ }));
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(WelcomeComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/src/app/welcome/welcome.component.ts b/src/app/welcome/welcome.component.ts
new file mode 100644
index 0000000..30dd78c
--- /dev/null
+++ b/src/app/welcome/welcome.component.ts
@@ -0,0 +1,15 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+ selector: 'app-welcome',
+ templateUrl: './welcome.component.html',
+ styleUrls: ['./welcome.component.scss']
+})
+export class WelcomeComponent implements OnInit {
+
+ constructor() { }
+
+ ngOnInit(): void {
+ }
+
+}
diff --git a/src/assets/custom-icons/add.svg b/src/assets/custom-icons/add.svg
new file mode 100644
index 0000000..a457724
--- /dev/null
+++ b/src/assets/custom-icons/add.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/assets/custom-icons/atomic.svg b/src/assets/custom-icons/atomic.svg
new file mode 100644
index 0000000..08b458d
--- /dev/null
+++ b/src/assets/custom-icons/atomic.svg
@@ -0,0 +1,79 @@
+
+
+
diff --git a/src/assets/custom-icons/balance-sheet.svg b/src/assets/custom-icons/balance-sheet.svg
new file mode 100644
index 0000000..0853b3b
--- /dev/null
+++ b/src/assets/custom-icons/balance-sheet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/assets/custom-icons/bell.svg b/src/assets/custom-icons/bell.svg
new file mode 100644
index 0000000..37760de
--- /dev/null
+++ b/src/assets/custom-icons/bell.svg
@@ -0,0 +1,12 @@
+
+
+
diff --git a/src/assets/custom-icons/book (1).svg b/src/assets/custom-icons/book (1).svg
new file mode 100644
index 0000000..f3bd8d4
--- /dev/null
+++ b/src/assets/custom-icons/book (1).svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/assets/custom-icons/book.svg b/src/assets/custom-icons/book.svg
new file mode 100644
index 0000000..f3bd8d4
--- /dev/null
+++ b/src/assets/custom-icons/book.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/assets/custom-icons/calendar.svg b/src/assets/custom-icons/calendar.svg
new file mode 100644
index 0000000..69e44ac
--- /dev/null
+++ b/src/assets/custom-icons/calendar.svg
@@ -0,0 +1,63 @@
+
+
+
+
diff --git a/src/assets/custom-icons/cloud-computing.svg b/src/assets/custom-icons/cloud-computing.svg
new file mode 100644
index 0000000..53b0087
--- /dev/null
+++ b/src/assets/custom-icons/cloud-computing.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/assets/custom-icons/delete.svg b/src/assets/custom-icons/delete.svg
new file mode 100644
index 0000000..3a6c3a0
--- /dev/null
+++ b/src/assets/custom-icons/delete.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/assets/custom-icons/discuss.svg b/src/assets/custom-icons/discuss.svg
new file mode 100644
index 0000000..7b91b09
--- /dev/null
+++ b/src/assets/custom-icons/discuss.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/assets/custom-icons/download-from-the-filled-cloud.svg b/src/assets/custom-icons/download-from-the-filled-cloud.svg
new file mode 100644
index 0000000..1f1d9e2
--- /dev/null
+++ b/src/assets/custom-icons/download-from-the-filled-cloud.svg
@@ -0,0 +1,47 @@
+
+
+
+
diff --git a/src/assets/custom-icons/edit.svg b/src/assets/custom-icons/edit.svg
new file mode 100644
index 0000000..cb2e599
--- /dev/null
+++ b/src/assets/custom-icons/edit.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/assets/custom-icons/flask.svg b/src/assets/custom-icons/flask.svg
new file mode 100644
index 0000000..e8ac38e
--- /dev/null
+++ b/src/assets/custom-icons/flask.svg
@@ -0,0 +1,52 @@
+
+
+
diff --git a/src/assets/custom-icons/folder.svg b/src/assets/custom-icons/folder.svg
new file mode 100644
index 0000000..4152a6a
--- /dev/null
+++ b/src/assets/custom-icons/folder.svg
@@ -0,0 +1,40 @@
+
+
+
+
diff --git a/src/assets/custom-icons/globe.svg b/src/assets/custom-icons/globe.svg
new file mode 100644
index 0000000..7c92f28
--- /dev/null
+++ b/src/assets/custom-icons/globe.svg
@@ -0,0 +1,85 @@
+
+
+
diff --git a/src/assets/custom-icons/home.svg b/src/assets/custom-icons/home.svg
new file mode 100644
index 0000000..d6d4bbe
--- /dev/null
+++ b/src/assets/custom-icons/home.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/assets/custom-icons/information.svg b/src/assets/custom-icons/information.svg
new file mode 100644
index 0000000..31386ef
--- /dev/null
+++ b/src/assets/custom-icons/information.svg
@@ -0,0 +1,45 @@
+
+
+
diff --git a/src/assets/custom-icons/microscope.svg b/src/assets/custom-icons/microscope.svg
new file mode 100644
index 0000000..5bcb24c
--- /dev/null
+++ b/src/assets/custom-icons/microscope.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/assets/custom-icons/money-growth.svg b/src/assets/custom-icons/money-growth.svg
new file mode 100644
index 0000000..5d5cbf4
--- /dev/null
+++ b/src/assets/custom-icons/money-growth.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/assets/custom-icons/mortarboard.svg b/src/assets/custom-icons/mortarboard.svg
new file mode 100644
index 0000000..32e0934
--- /dev/null
+++ b/src/assets/custom-icons/mortarboard.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/assets/custom-icons/newspaper.svg b/src/assets/custom-icons/newspaper.svg
new file mode 100644
index 0000000..a6ea756
--- /dev/null
+++ b/src/assets/custom-icons/newspaper.svg
@@ -0,0 +1,50 @@
+
+
+
diff --git a/src/assets/custom-icons/play-button.svg b/src/assets/custom-icons/play-button.svg
new file mode 100644
index 0000000..31b6ec8
--- /dev/null
+++ b/src/assets/custom-icons/play-button.svg
@@ -0,0 +1,43 @@
+
+
+
diff --git a/src/assets/custom-icons/tab.svg b/src/assets/custom-icons/tab.svg
new file mode 100644
index 0000000..f7254d6
--- /dev/null
+++ b/src/assets/custom-icons/tab.svg
@@ -0,0 +1,42 @@
+
+
+
+
diff --git a/src/index.html b/src/index.html
index c8c2b6e..1710aa7 100644
--- a/src/index.html
+++ b/src/index.html
@@ -1,13 +1,17 @@
+
-
- LmsAppNew
-
-
-
+
+ LMS
+
+
+
+
+
-
+
+
diff --git a/src/styles.scss b/src/styles.scss
index 90d4ee0..8511378 100644
--- a/src/styles.scss
+++ b/src/styles.scss
@@ -1 +1,18 @@
/* You can add global styles to this file, and also import other style files */
+
+* {
+ font-family: 'Roboto', sans-serif;
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+}
+
+:root {
+ --black: #1a1a1a;
+ --ash-black: #282828;
+ --dark-grey: #666666;
+ --light-grey: #999999;
+ --teal: #06c4a8;
+ --green: #8cc63f;
+ --teal-green: #08c17e;
+}