fix nook subdomain routing

This commit is contained in:
2026-08-27 13:06:41 -04:00
parent 20944bf46e
commit 6d3315c71f
4 changed files with 50 additions and 2 deletions

21
src/routes/checkout.tsx Normal file
View File

@@ -0,0 +1,21 @@
import { Switch, Match } from "solid-js";
import { useSite } from "~/context/SiteContext";
import NotFound from "./[...404]";
import NookCheckout from "./nook/checkout";
/**
* Host-aware checkout route — `/checkout`.
*
* Only The Nook has a checkout flow; all other sites fall back to 404.
* Mirrors the dispatch pattern in `src/routes/index.tsx`.
*/
export default function CheckoutPage() {
const site = useSite();
return (
<Switch fallback={<NotFound />}>
<Match when={site().id === "nook"}>
<NookCheckout />
</Match>
</Switch>
);
}