From 9a54ed83d2649ee64cea6e093302a17e3a9c92e8 Mon Sep 17 00:00:00 2001
From: Mr MRF <79112136+Mr-MRF-Dev@users.noreply.github.com>
Date: Fri, 16 Aug 2024 03:02:59 +0330
Subject: [PATCH 001/142] feat: created dashboard component and style
---
src/app/app.routes.ts | 5 +
.../dashboard/dashboard.component.html | 104 ++++++++++++++++++
.../dashboard/dashboard.component.scss | 11 ++
.../dashboard/dashboard.component.spec.ts | 23 ++++
.../dashboard/dashboard.component.ts | 66 +++++++++++
5 files changed, 209 insertions(+)
create mode 100644 src/app/components/dashboard/dashboard.component.html
create mode 100644 src/app/components/dashboard/dashboard.component.scss
create mode 100644 src/app/components/dashboard/dashboard.component.spec.ts
create mode 100644 src/app/components/dashboard/dashboard.component.ts
diff --git a/src/app/app.routes.ts b/src/app/app.routes.ts
index 89cda22..290ed57 100644
--- a/src/app/app.routes.ts
+++ b/src/app/app.routes.ts
@@ -1,6 +1,7 @@
import { Routes } from '@angular/router';
import { LoginComponent } from './components/login/login.component';
import { RegisterComponent } from './components/register/register.component';
+import { DashboardComponent } from './components/dashboard/dashboard.component';
export const routes: Routes = [
{
@@ -11,4 +12,8 @@ export const routes: Routes = [
path: 'register',
component: RegisterComponent,
},
+ {
+ path: 'dashboard',
+ component: DashboardComponent,
+ },
];
diff --git a/src/app/components/dashboard/dashboard.component.html b/src/app/components/dashboard/dashboard.component.html
new file mode 100644
index 0000000..121f466
--- /dev/null
+++ b/src/app/components/dashboard/dashboard.component.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+