From 372a8aa5fce75e356057adc797a0c7d14f0f5e2b Mon Sep 17 00:00:00 2001 From: Michael Freno Date: Thu, 18 Dec 2025 13:35:01 -0500 Subject: [PATCH] dece --- src/app.tsx | 55 +++++++--------------------- src/components/Bars.tsx | 11 +++--- src/components/TerminalSplash.tsx | 60 +++++++++---------------------- src/components/Typewriter.tsx | 29 +++++---------- src/components/blog/Card.tsx | 29 ++++++--------- src/context/splash.tsx | 26 -------------- src/routes/blog/[title]/index.tsx | 9 ++--- src/routes/blog/index.tsx | 17 ++------- 8 files changed, 59 insertions(+), 177 deletions(-) delete mode 100644 src/context/splash.tsx 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 (