added create page and updated auth

This commit is contained in:
u80864958
2025-04-28 11:32:26 +02:00
parent efe902639e
commit 4429f2670c
16 changed files with 242 additions and 30 deletions

14
frontend/¨:w Normal file
View File

@ -0,0 +1,14 @@
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();
}