diff --git a/src/app/pages/dashboard/dashboard.module.ts b/src/app/pages/dashboard/dashboard.module.ts index a299a1b7..ede7fe79 100644 --- a/src/app/pages/dashboard/dashboard.module.ts +++ b/src/app/pages/dashboard/dashboard.module.ts @@ -20,7 +20,6 @@ import { RoomsComponent } from './rooms/rooms.component'; import { RoomSelectorComponent } from './rooms/room-selector/room-selector.component'; import { TemperatureComponent } from './temperature/temperature.component'; import { TemperatureDraggerComponent } from './temperature/temperature-dragger/temperature-dragger.component'; -import { TeamComponent } from './team/team.component'; import { KittenComponent } from './kitten/kitten.component'; import { SecurityCamerasComponent } from './security-cameras/security-cameras.component'; import { ElectricityComponent } from './electricity/electricity.component'; @@ -55,7 +54,6 @@ import { FormsModule } from '@angular/forms'; RoomSelectorComponent, TemperatureComponent, RoomsComponent, - TeamComponent, KittenComponent, SecurityCamerasComponent, ElectricityComponent, diff --git a/src/app/pages/dashboard/team/team.component.html b/src/app/pages/dashboard/team/team.component.html deleted file mode 100644 index 72bd210a..00000000 --- a/src/app/pages/dashboard/team/team.component.html +++ /dev/null @@ -1,35 +0,0 @@ - -
- - - -
- -
-
-

Akveo Team

-
-
Design & Development
-
- We're small team of fullstack software experts. We're crazy about creation of modern and secure software. We help to make - your product amazing. -
-
- - -
diff --git a/src/app/pages/dashboard/team/team.component.scss b/src/app/pages/dashboard/team/team.component.scss deleted file mode 100644 index 1317f3d8..00000000 --- a/src/app/pages/dashboard/team/team.component.scss +++ /dev/null @@ -1,66 +0,0 @@ -@import '../../../@theme/styles/themes'; - -@include nb-install-component() { - - .team-photo { - background-image: url('/assets/images/team.png'); - background-position: center; - background-size: cover; - position: relative; - border-top-left-radius: nb-theme(card-border-radius); - border-top-right-radius: nb-theme(card-border-radius); - - flex: 1; - max-height: 50%; - - .team-link { - position: absolute; - height: 4rem; - width: 4rem; - bottom: -2rem; - right: 1rem; - border-radius: 50%; - //box-shadow: 0 4px 10px 0 rgba(nb-theme(layout-bg), 0.4), 0 0 12px 0 rgba(nb-theme(color-fg-highlight), 0.2); - } - } - - .team-info { - padding: 1.5rem 1.5rem 0; - - .team-title { - color: nb-theme(color-fg-heading); - font-family: nb-theme(font-secondary); - - h2 { - margin: 0; - } - } - - .team-subtitle { - margin-bottom: 1rem; - color: nb-theme(color-fg); - font-weight: nb-theme(font-weight-light); - } - - .team-bio { - text-align: justify; - color: nb-theme(color-fg-text); - font-weight: nb-theme(font-weight-light); - } - } - - .links { - display: flex; - justify-content: space-around; - padding: 1rem 0; - - a { - text-decoration: none; - color: nb-theme(color-fg); - - i { - font-size: 1.75rem; - } - } - } -} diff --git a/src/app/pages/dashboard/team/team.component.ts b/src/app/pages/dashboard/team/team.component.ts deleted file mode 100644 index 5b718d5c..00000000 --- a/src/app/pages/dashboard/team/team.component.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { Component } from '@angular/core'; - -@Component({ - selector: 'ngx-team', - styleUrls: ['./team.component.scss'], - templateUrl: './team.component.html', -}) -export class TeamComponent { -}