feat(waitlist): add privacy policy page

Co-authored-by: Ona <no-reply@ona.com>
This commit is contained in:
2026-03-08 02:31:11 +00:00
parent 272a05d96a
commit 2dd654106a
2 changed files with 246 additions and 2 deletions

View File

@@ -1,3 +1,6 @@
import { type RouteConfig, index } from "@react-router/dev/routes"
import { type RouteConfig, index, route } from "@react-router/dev/routes"
export default [index("routes/home.tsx")] satisfies RouteConfig
export default [
index("routes/home.tsx"),
route("privacy", "routes/privacy-policy.tsx"),
] satisfies RouteConfig