subdomain footer

This commit is contained in:
2026-07-27 16:34:32 -04:00
parent 2f1b5f35c6
commit 34db684fe1
6 changed files with 43 additions and 29 deletions

View File

@@ -11,6 +11,7 @@ import {
import "./app.css";
import { LeftBar, RightBar } from "./components/Bars";
import { TerminalSplash } from "./components/TerminalSplash";
import SubdomainFooter from "./components/SubdomainFooter";
import { MetaProvider } from "@solidjs/meta";
import ErrorBoundaryFallback from "./components/ErrorBoundaryFallback";
import { BarsProvider, useBars } from "./context/bars";
@@ -214,6 +215,7 @@ function AppLayout(props: { children: any }) {
{props.children}
</Suspense>
</ErrorBoundary>
<SubdomainFooter />
</div>
</Show>
</>