diff --git a/src/app.tsx b/src/app.tsx index 30b2747..ae7e11a 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -10,7 +10,6 @@ import { import "./app.css"; import { LeftBar, RightBar } from "./components/Bars"; import { TerminalSplash } from "./components/TerminalSplash"; -import { SplashProvider } from "./context/splash"; import { MetaProvider } from "@solidjs/meta"; import ErrorBoundaryFallback from "./components/ErrorBoundaryFallback"; import { BarsProvider, useBars } from "./context/bars"; @@ -160,33 +159,6 @@ function AppLayout(props: { children: any }) { return (
- {/* Hamburger menu button - only visible on non-touch devices under mobile breakpoint */} - -
- {props.children} + }>{props.children}
@@ -204,20 +176,17 @@ function AppLayout(props: { children: any }) { export default function App() { return ( - - ( - - )} - > - - - {props.children}}> - - - - - + ( + + )} + > + + {props.children}}> + + + + ); } diff --git a/src/components/Bars.tsx b/src/components/Bars.tsx index fc80583..6837b46 100644 --- a/src/components/Bars.tsx +++ b/src/components/Bars.tsx @@ -2,6 +2,7 @@ import { Typewriter } from "./Typewriter"; import { useBars } from "~/context/bars"; import { onMount, createEffect, createSignal, Show, For } from "solid-js"; import { api } from "~/lib/api"; +import { TerminalSplash } from "./TerminalSplash"; export function LeftBar() { const { setLeftBarSize, leftBarVisible, setLeftBarVisible } = useBars(); @@ -136,7 +137,7 @@ export function LeftBar() { return (