feat: initial commit

This commit is contained in:
Iain Learmonth 2026-01-08 16:19:27 +00:00
commit 98355eceb5
18 changed files with 5416 additions and 0 deletions

12
app/routes.ts Normal file
View file

@ -0,0 +1,12 @@
import {type RouteConfig, index, layout, route} from "@react-router/dev/routes";
export default [
layout("routes/base_layout.tsx",
[
index("routes/home.tsx"),
route("proxy", "routes/proxy.tsx", [
index("routes/proxy/overview.tsx"),
route("origins", "routes/proxy/origins.tsx"),
])
]),
] satisfies RouteConfig;