From c47326f417fd610d8ca1eff742e5bf8c8589a768 Mon Sep 17 00:00:00 2001 From: Michael Freno Date: Mon, 29 Dec 2025 00:23:00 -0500 Subject: [PATCH] some adjustments --- src/app.tsx | 8 ++++++++ src/routes/blog/[title]/index.tsx | 2 +- src/routes/index.tsx | 22 +++++++++++++--------- 3 files changed, 22 insertions(+), 10 deletions(-) diff --git a/src/app.tsx b/src/app.tsx index 2feb160..4227a23 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -40,6 +40,14 @@ function AppLayout(props: { children: any }) { setRightBarVisible(true); } }); + + // Hide leftbar on mobile after 500ms with translation animation + const currentIsMobile = isMobile(windowWidth()); + if (currentIsMobile) { + setTimeout(() => { + setLeftBarVisible(false); + }, 1000); + } }); // Auto-hide on scroll (mobile only) diff --git a/src/routes/blog/[title]/index.tsx b/src/routes/blog/[title]/index.tsx index 78de472..977a7fe 100644 --- a/src/routes/blog/[title]/index.tsx +++ b/src/routes/blog/[title]/index.tsx @@ -350,7 +350,7 @@ export default function PostPage() { "pointer-events": "none" }} /> -
+
{p().title.replaceAll("_", " ")} diff --git a/src/routes/index.tsx b/src/routes/index.tsx index 81d6ca1..9553481 100644 --- a/src/routes/index.tsx +++ b/src/routes/index.tsx @@ -13,21 +13,21 @@ export default function Home() {
- +
Hey!
- +
My name is Mike Freno, I'm a{" "} Software Engineer based in{" "} Brooklyn, NY.
- + I'm a passionate developer tooling, game, and open source software developer. - + Recently been working in the world of{" "} {" "} (an open source game engine for Lua).{" "} {" "} - + You can see some of my work{" "} - + If you want to get in touch, check to side bar for various links.
@@ -154,7 +154,11 @@ export default function Home() {
- + And if you love the color schemes of this site
@@ -171,14 +175,14 @@ export default function Home() { and a home server setup too. Which I will write about soon™.
- +
My Collection of
By-the-ways:
- +
  • I use Neovim
  • I use Arch Linux