import type { WebModule } from "../lib/modules.js"; import { carwashModule } from "./carwash/index.js"; import { validationModule } from "./validation/index.js"; // The web-side module registry, in display order. Adding a module = its folder here // + one entry below (+ the manifest in @parking/shared). router.tsx spreads these // into the nav and the route tree and never names a module's screens itself. // `parking` has no folder yet — its screens are still declared directly in // router.tsx; they move behind this seam subsystem by subsystem. export const WEB_MODULES: readonly WebModule[] = [validationModule, carwashModule];