about page

This commit is contained in:
jojo aquino 2025-04-27 23:16:30 +01:00
parent 5ceb3238ef
commit 64f13c1986
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,8 @@
@page
@model EnotaryoPH.Web.Pages.AboutModel
@{
}
<div class="container text-center p-5 my-auto" style="max-width: 1000px;font-weight: bold;">
<h2>This website is brought to you with ❤️ by <a href="https://jfaquinojr.com">Mang Jose</a>.</h2>
</div>

View File

@ -0,0 +1,12 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace EnotaryoPH.Web.Pages
{
public class AboutModel : PageModel
{
public void OnGet()
{
}
}
}