1
0

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>
This commit is contained in:
2025-07-18 15:46:24 +09:00
parent 3302ceb852
commit e829de6878

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>
);