@page "/" @using ImageBoardServerApp.Data.Repository @inject AuthenticationStateProvider authStateProvider

BulletBoard

This is a simple Imageboard made in Razor.
We're currently hosting @amountOfPosts Threads, @amountOfComments Comments and @amountOfUsers Users.
@Details
Edit your account
@code{ private string Details { get; set; } private int amountOfPosts = -1; private int amountOfComments = -1; private int amountOfUsers = -1; protected override async Task OnParametersSetAsync() { var posts = await PostsRepository.getPostsAsync(); amountOfPosts = posts.Count; var comments = await CommentsRepository.getCommentsAsync(); amountOfComments = comments.Count; var users = await UsersRepository.getUsersAsync(); amountOfUsers = users.Count; await base.OnParametersSetAsync(); } }