Add "material theme link" component

This commit is contained in:
eugene-sinitsyn 2020-03-12 13:31:36 +03:00
parent 9aa4b9c53f
commit ea600e94c7
18 changed files with 135 additions and 32 deletions

View file

@ -1,7 +1,9 @@
<nb-layout>
<nb-layout-header fixed>
<div class="content-center">
<ngx-landing-header class="docs-header" [sidebarTag]="sidebarTag" [isDocs]="true"></ngx-landing-header>
<ngx-landing-header class="docs-header" [sidebarTag]="sidebarTag" [isDocs]="true">
<ngx-material-theme-link></ngx-material-theme-link>
</ngx-landing-header>
</div>
</nb-layout-header>
<nb-sidebar class="menu-sidebar" [tag]="sidebarTag" [responsive]="true" [compactedBreakpoints]="[]" [collapsedBreakpoints]="collapsedBreakpoints">

View file

@ -11,6 +11,7 @@ import { NgxLandingThemeModule } from '../../@theme/theme.module';
import { SwiperModule } from 'ngx-swiper-wrapper';
import { NgxBlocksModule } from '../../blocks/blocks.module';
import { LandingDocsRoutingModule } from './landing-docs-routing.module';
import { LandingSharedModule } from '../../shared/landing-shared.module';
// modules
// components
@ -32,6 +33,7 @@ const COMPONENTS = [
imports: [
NgxLandingThemeModule,
SwiperModule,
LandingSharedModule,
LandingDocsRoutingModule,
NgxBlocksModule,
],