fix(pages): fix titles and descriptions

This commit is contained in:
Alex 2020-04-02 19:22:11 +03:00
parent ef1421ee80
commit cca53006f4
11 changed files with 59 additions and 18 deletions

View file

@ -18,6 +18,7 @@ import { LandingSharedModule } from './shared/landing-shared.module';
import { DOCS, STRUCTURE } from './app.options';
const docs = require('../output.json');
import { structure } from '../structure';
import {MetadataService} from '../../src/app/@core/utils/metadata.service';
@NgModule({
declarations: [
@ -36,6 +37,7 @@ import { structure } from '../structure';
bootstrap: [AppComponent],
providers: [
Title,
MetadataService,
{ provide: STRUCTURE, useValue: structure },
{ provide: DOCS, useValue: docs },
],