Adds rules page

This commit is contained in:
2026-05-18 00:44:53 -05:00
parent 642228f4a9
commit ebe0a9692f
3 changed files with 74 additions and 0 deletions

View File

@@ -14,6 +14,7 @@
import HuntCreate from './routes/admin/HuntCreate.svelte'
import HuntManage from './routes/admin/HuntManage.svelte'
import PhotoReview from './routes/admin/PhotoReview.svelte'
import Rules from './routes/Rules.svelte'
const routes = {
'/': HuntList,
@@ -26,6 +27,7 @@
'/admin/hunt/create': HuntCreate,
'/admin/hunt/:huntId': HuntManage,
'/admin/hunt/:huntId/review': PhotoReview,
'/rules': Rules,
}
const publicRoutes = ['/login', '/signup']