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

View File

@@ -7,6 +7,7 @@ import NessaLanding from "./nessa";
import LineageLanding from "./lineage";
import GazeLanding from "./gaze";
import InputHaloLanding from "./inputhalo";
import NookLanding from "./nook";
/**
* Root route handler.
@@ -44,6 +45,9 @@ export default function Home(): JSX.Element {
<Match when={site().id === "inputhalo"}>
<InputHaloLanding />
</Match>
<Match when={site().id === "nook"}>
<NookLanding />
</Match>
</Switch>
);
}