diff --git a/src/app/app.module.ts b/src/app/app.module.ts
index c7433b1..395a646 100644
--- a/src/app/app.module.ts
+++ b/src/app/app.module.ts
@@ -5,7 +5,7 @@ import { AppComponent } from './app.component';
import { SplashScreenComponent } from './modules/splash-screen/splash-screen.component';
import { SplitPipe } from './pipes/split.pipe';
import { AdminComponent } from './modules/admin/admin.component';
-import { FooterComponent } from './modules/footer/footer.component';
+import { FooterComponent } from './shared/footer/footer.component';
@NgModule({
declarations: [
@@ -13,7 +13,7 @@ import { FooterComponent } from './modules/footer/footer.component';
SplashScreenComponent,
SplitPipe,
AdminComponent,
- FooterComponent
+ FooterComponent,
],
imports: [
BrowserModule,
diff --git a/src/app/modules/footer/footer.component.html b/src/app/modules/footer/footer.component.html
deleted file mode 100644
index d495f35..0000000
--- a/src/app/modules/footer/footer.component.html
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
ESTAMOS PARA AYUDARTE
-
-

-
-
-
-
-
-
VOLVER
-
-

-
-
-
-
diff --git a/src/app/modules/footer/footer.component.scss b/src/app/modules/footer/footer.component.scss
deleted file mode 100644
index e69de29..0000000
diff --git a/src/app/modules/footer/footer.component.spec.ts b/src/app/modules/footer/footer.component.spec.ts
deleted file mode 100644
index 2ca6c45..0000000
--- a/src/app/modules/footer/footer.component.spec.ts
+++ /dev/null
@@ -1,25 +0,0 @@
-import { async, ComponentFixture, TestBed } from '@angular/core/testing';
-
-import { FooterComponent } from './footer.component';
-
-describe('FooterComponent', () => {
- let component: FooterComponent;
- let fixture: ComponentFixture;
-
- beforeEach(async(() => {
- TestBed.configureTestingModule({
- declarations: [ FooterComponent ]
- })
- .compileComponents();
- }));
-
- beforeEach(() => {
- fixture = TestBed.createComponent(FooterComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
-
- it('should create', () => {
- expect(component).toBeTruthy();
- });
-});
diff --git a/src/app/modules/footer/footer.component.ts b/src/app/modules/footer/footer.component.ts
deleted file mode 100644
index 19c0776..0000000
--- a/src/app/modules/footer/footer.component.ts
+++ /dev/null
@@ -1,17 +0,0 @@
-import { Component, OnInit } from "@angular/core";
-import { Location } from "@angular/common";
-
-@Component({
- selector: "app-footer",
- templateUrl: "./footer.component.html",
- styleUrls: ["./footer.component.scss"]
-})
-export class FooterComponent implements OnInit {
- constructor(private location: Location) {}
-
- ngOnInit() {}
-
- goBack() {
- this.location.back();
- }
-}
diff --git a/src/app/modules/seleccion-articulos/seleccion-articulos.component.html b/src/app/modules/seleccion-articulos/seleccion-articulos.component.html
index b65ae03..5695e49 100644
--- a/src/app/modules/seleccion-articulos/seleccion-articulos.component.html
+++ b/src/app/modules/seleccion-articulos/seleccion-articulos.component.html
@@ -1,13 +1,10 @@
-
-
+
+
+
-
+
SELECCIONÁ TÚ COMIDA Y/O BEBIDA
@@ -15,7 +12,7 @@
-
+
diff --git a/src/app/modules/seleccion-articulos/seleccion-articulos.module.ts b/src/app/modules/seleccion-articulos/seleccion-articulos.module.ts
index 4e04819..7427f95 100644
--- a/src/app/modules/seleccion-articulos/seleccion-articulos.module.ts
+++ b/src/app/modules/seleccion-articulos/seleccion-articulos.module.ts
@@ -1,15 +1,12 @@
-import { NgModule } from '@angular/core';
-import { CommonModule } from '@angular/common';
-
-import { SeleccionArticulosRoutingModule } from './seleccion-articulos-routing.module';
-import { SeleccionArticulosComponent } from './seleccion-articulos.component';
+import { NgModule } from "@angular/core";
+import { CommonModule } from "@angular/common";
+import { SeleccionArticulosRoutingModule } from "./seleccion-articulos-routing.module";
+import { SeleccionArticulosComponent } from "./seleccion-articulos.component";
+import { HeaderPublicidadComponent } from "src/app/shared/header-publicidad/header-publicidad.component";
@NgModule({
- declarations: [SeleccionArticulosComponent],
- imports: [
- CommonModule,
- SeleccionArticulosRoutingModule
- ]
+ declarations: [SeleccionArticulosComponent, HeaderPublicidadComponent],
+ imports: [CommonModule, SeleccionArticulosRoutingModule]
})
-export class SeleccionArticulosModule { }
+export class SeleccionArticulosModule {}