diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index 61fa6c7..0264ddc 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -2,8 +2,14 @@ import { NgModule } from '@angular/core'; import { RouterModule, Routes } from '@angular/router'; import { HomeComponent } from './home/home.component'; import { ProductsComponent } from './products/products.component'; +import { CybersecurityComponent } from './cybersecurity/cybersecurity.component'; +import { UPSComponent } from './ups/ups.component'; +import { BlogComponent } from './blog/blog.component'; const routes: Routes = [ + { path: 'blog', component: BlogComponent }, + { path: 'ups', component: UPSComponent }, + { path: 'cybersecurity', component: CybersecurityComponent }, { path: 'products', component: ProductsComponent }, { path: 'home', component: HomeComponent }, // puedes tener otras rutas aquí diff --git a/src/app/app.component.html b/src/app/app.component.html index 949f30f..791279f 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -17,7 +17,7 @@
Blog
+ ++ Aquí te dejamos algunos hechos, noticias e información importante sobre seguridad informática. +
+ ++ The European Union has officially approved Switzerland’s participation in a multinational European cybersecurity initiative, Defense News reported. + + + Leer más + + + + +
+ Ciberdelincuentes están tomando el control de cuentas y suplantando identidades a través de esta peligrosa técnica. Descubre cómo puedes protegerte de esta amenaza creciente. + + + Leer más + + + + +
+ La petición se da después de la denuncia que recibió la Dirección de Asuntos Jurídicos de esa justicia por parte de una magistrada, quien aseguró que intentaron interceptar sus mensajes electrónicos hace cuatro meses +
+ + + Leer más + + + + +cybersecurity works!
diff --git a/src/app/cybersecurity/cybersecurity.component.spec.ts b/src/app/cybersecurity/cybersecurity.component.spec.ts new file mode 100644 index 0000000..4c106ae --- /dev/null +++ b/src/app/cybersecurity/cybersecurity.component.spec.ts @@ -0,0 +1,21 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { CybersecurityComponent } from './cybersecurity.component'; + +describe('CybersecurityComponent', () => { + let component: CybersecurityComponent; + let fixture: ComponentFixture