change favicon

This commit is contained in:
u80864958
2025-04-29 15:00:55 +02:00
parent fc8b888198
commit f4adfb6a62
3 changed files with 1 additions and 22 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 37 KiB

View File

@ -1,11 +1,4 @@
import {
Component,
computed,
effect,
inject,
OnChanges,
SimpleChanges,
} from '@angular/core';
import { Component, computed, effect, inject } from '@angular/core';
import { RouterLink, RouterOutlet } from '@angular/router';
import { ModalComponent } from './components/modal/modal.component';
import { LoginComponent } from './components/login/login.component';

View File

@ -1,14 +0,0 @@
import { Component, inject, OnInit, Signal } from '@angular/core';
import { PostsService } from '../../shared/services/posts.service';
import { NgForOf } from '@angular/common';
import { RouterLink } from '@angular/router';
@Component({
selector: 'app-home',
imports: [NgForOf, RouterLink],
standalone: true,
templateUrl: './home.component.html',
})
export class HomeComponent {
posts = inject(PostsService).getPosts();
}