summaryrefslogtreecommitdiff
path: root/nexus/pages/account/account.go
diff options
context:
space:
mode:
Diffstat (limited to 'nexus/pages/account/account.go')
-rw-r--r--nexus/pages/account/account.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/nexus/pages/account/account.go b/nexus/pages/account/account.go
new file mode 100644
index 0000000..ed3abf1
--- /dev/null
+++ b/nexus/pages/account/account.go
@@ -0,0 +1,13 @@
+package account
+
+import (
+ "nexus/utils/meta"
+ "nexus/utils/shortcuts"
+
+ "github.com/gofiber/fiber/v2"
+)
+
+func Index(context *fiber.Ctx) error {
+ meta.SetPageTitle(context, "My Account")
+ return shortcuts.Render(context, "account/index", nil)
+}