From 815dfb26e0280f7a0420662d91cc78d7e462d469 Mon Sep 17 00:00:00 2001 From: syui Date: Fri, 18 Jul 2025 15:45:30 +0900 Subject: [PATCH 1/4] Hide navigation elements on mobile devices MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add 'hidden md:block' to Bluesky link to hide on mobile - Add 'hidden md:flex' to form inputs to hide on mobile - Keep only the AI icon visible on mobile for cleaner UI - Desktop users still see full navigation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- src/components/common/Navigation.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/common/Navigation.tsx b/src/components/common/Navigation.tsx index 98d0354..535e4e9 100644 --- a/src/components/common/Navigation.tsx +++ b/src/components/common/Navigation.tsx @@ -33,7 +33,7 @@ export default function Navigation({ username: _username }: NavigationProps) { - + -
+
Date: Fri, 18 Jul 2025 15:46:05 +0900 Subject: [PATCH 2/4] Hide navigation elements on mobile devices MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add 'hidden md:block' to Bluesky link to hide on mobile - Add 'hidden md:flex' to form inputs to hide on mobile - Keep only the AI icon visible on mobile for cleaner UI - Desktop users still see full navigation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- src/components/common/Navigation.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/common/Navigation.tsx b/src/components/common/Navigation.tsx index 98d0354..535e4e9 100644 --- a/src/components/common/Navigation.tsx +++ b/src/components/common/Navigation.tsx @@ -33,7 +33,7 @@ export default function Navigation({ username: _username }: NavigationProps) { - +
-
+
Date: Fri, 18 Jul 2025 15:46:24 +0900 Subject: [PATCH 3/4] Remove user search functionality from navigation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Delete both user and id search forms completely - Simplify navigation to only show AI icon and Bluesky link - Clean up UI by removing unused search features 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- src/components/common/Navigation.tsx | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/src/components/common/Navigation.tsx b/src/components/common/Navigation.tsx index 535e4e9..76033e6 100644 --- a/src/components/common/Navigation.tsx +++ b/src/components/common/Navigation.tsx @@ -45,32 +45,6 @@ export default function Navigation({ username: _username }: NavigationProps) {
-
- - - - -
- - -
-
); From 14873a958905510bdc2b20b373b7962a39432577 Mon Sep 17 00:00:00 2001 From: syui Date: Fri, 18 Jul 2025 15:50:22 +0900 Subject: [PATCH 4/4] fix gh-actions --- .github/workflows/gh-pages.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 4d21ad0..5de95f4 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -4,7 +4,6 @@ on: push: branches: - main - - react-migration jobs: build-deploy: