account page stubbed: link to etsy sign up

This commit is contained in:
2025-12-29 06:06:13 -07:00
parent 61f9afb39c
commit c9100383e4
35 changed files with 1326 additions and 158 deletions
+8
View File
@@ -0,0 +1,8 @@
package consts
import "errors"
var (
// TODO: use throught the database methods and the site template parsing to treat it as a 404 (not a redirect)
ErrNotFound = errors.New("not found")
)