mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.0 KiB
30 lines
1.0 KiB
import { GfWorldMapChartModule } from '@ghostfolio/client/components/world-map-chart/world-map-chart.module';
|
|
import { GfCarouselComponent } from '@ghostfolio/ui/carousel';
|
|
import { GfLogoComponent } from '@ghostfolio/ui/logo';
|
|
import { GfValueComponent } from '@ghostfolio/ui/value';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
import { MatCardModule } from '@angular/material/card';
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
import { LandingPageRoutingModule } from './landing-page-routing.module';
|
|
import { LandingPageComponent } from './landing-page.component';
|
|
|
|
@NgModule({
|
|
declarations: [LandingPageComponent],
|
|
imports: [
|
|
CommonModule,
|
|
GfCarouselComponent,
|
|
GfLogoComponent,
|
|
GfValueComponent,
|
|
GfWorldMapChartModule,
|
|
LandingPageRoutingModule,
|
|
MatButtonModule,
|
|
MatCardModule,
|
|
RouterModule
|
|
],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
})
|
|
export class LandingPageModule {}
|
|
|