Skip to content

Commit

Permalink
feat: Logo links to home
Browse files Browse the repository at this point in the history
  • Loading branch information
grand-rick committed Feb 18, 2024
1 parent 40c562f commit 7678282
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/modules/news/news-body/news-body.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ import { Component, EventEmitter, Input, Output } from '@angular/core';
import { circularMotion, fadingAnimation } from '../../../helpers/animations';
import { CoolTechAnimalModel } from '../../../models/coolTechAnimal.model';
import { GlobalsService } from '../../../services/globals/globals.service';
import { RouterOutlet } from '@angular/router';
import { RouterOutlet, RouterLink } from '@angular/router';
import { MenuMobileComponent } from '../../../shared/components/ui/menu-mobile/menu-mobile.component';

@Component({
selector: 'news-body',
standalone: true,
imports: [CommonModule, RouterOutlet, MenuMobileComponent],
imports: [CommonModule, RouterOutlet, MenuMobileComponent, RouterLink],
providers: [GlobalsService],
templateUrl: './news-body.component.html',
styleUrl: './news-body.component.scss',
Expand Down

0 comments on commit 7678282

Please sign in to comment.