Added account page with subpage select

This commit is contained in:
2025-02-14 23:15:51 +11:00
parent ea4dd2a407
commit d53114cc20
6 changed files with 117 additions and 2 deletions

10
view/page/account.templ Normal file
View File

@@ -0,0 +1,10 @@
package page
import "projectreshoot/view/layout"
import "projectreshoot/view/component/account"
templ Account(subpage string) {
@layout.Global() {
@account.AccountContent(subpage)
}
}