1
0

Compare commits

...

5 Commits

Author SHA1 Message Date
syui
2b954ec582 Merge pull request #2 from aisyui/react-migration
React migration
2025-07-18 15:55:13 +09:00
94062298ab Merge main branch into react-migration
- Resolve merge conflict in Navigation.tsx
- Keep user search functionality removed (react-migration version)
- Maintain mobile responsive design improvements
- Ready for merge back to main

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-18 15:53:28 +09:00
14873a9589 fix gh-actions 2025-07-18 15:50:22 +09:00
e829de6878 Remove user search functionality from navigation
- 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 <noreply@anthropic.com>
2025-07-18 15:46:24 +09:00
3302ceb852 Hide navigation elements on mobile devices
- 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 <noreply@anthropic.com>
2025-07-18 15:46:05 +09:00

View File

@@ -45,32 +45,6 @@ export default function Navigation({ username: _username }: NavigationProps) {
</code>
</div>
<div className="flex gap-2 hidden md:flex">
<form className="flex gap-2">
<input
type="text"
placeholder="user"
className="px-2 py-1 text-black rounded"
/>
<input
type="submit"
value="Go"
className="px-3 py-1 bg-primary text-white rounded hover:bg-secondary cursor-pointer"
/>
</form>
<form className="flex gap-2">
<input
type="text"
placeholder="id"
className="px-2 py-1 text-black rounded"
/>
<input
type="submit"
value="Go"
className="px-3 py-1 bg-primary text-white rounded hover:bg-secondary cursor-pointer"
/>
</form>
</div>
</div>
</div>
);