Implements Initial Stack Slider

This commit is contained in:
2023-11-08 04:15:18 -03:00
parent 100926b20d
commit 0b32845c2b
17 changed files with 327 additions and 48 deletions

View File

@@ -0,0 +1,21 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import {HomeComponent} from "./home.component";
import {StackSliderComponent} from "./stack-slider/stack-slider.component";
import {StackCardComponent} from "./stack-slider/stack-card/stack-card.component";
import {NgxGlideComponent} from "ngx-glide";
@NgModule({
declarations: [
HomeComponent,
StackSliderComponent,
StackCardComponent
],
imports: [
CommonModule,
NgxGlideComponent
]
})
export class HomeModule { }