diff --git a/EnotaryoPH/EnotaryoPH.Web/Pages/About.cshtml b/EnotaryoPH/EnotaryoPH.Web/Pages/About.cshtml
new file mode 100644
index 0000000..fe1a882
--- /dev/null
+++ b/EnotaryoPH/EnotaryoPH.Web/Pages/About.cshtml
@@ -0,0 +1,8 @@
+@page
+@model EnotaryoPH.Web.Pages.AboutModel
+@{
+}
+
+
+
This website is brought to you with ❤️ by Mang Jose.
+
diff --git a/EnotaryoPH/EnotaryoPH.Web/Pages/About.cshtml.cs b/EnotaryoPH/EnotaryoPH.Web/Pages/About.cshtml.cs
new file mode 100644
index 0000000..ba2f75b
--- /dev/null
+++ b/EnotaryoPH/EnotaryoPH.Web/Pages/About.cshtml.cs
@@ -0,0 +1,12 @@
+using Microsoft.AspNetCore.Mvc;
+using Microsoft.AspNetCore.Mvc.RazorPages;
+
+namespace EnotaryoPH.Web.Pages
+{
+ public class AboutModel : PageModel
+ {
+ public void OnGet()
+ {
+ }
+ }
+}