Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
## Note: This is an experimental project that is actively being developed and tested - features may change without notice

<p float="left">
<picture>
<img src="./docs/images/512.png" alt="ToolHive logo" height="100" align="middle" />
</picture>
<picture>
<source media="(prefers-color-scheme: dark)" srcset="docs/images/toolhive-wordmark-white.png">
<img src="docs/images/toolhive-wordmark-black.png" alt="ToolHive wordmark" width="500" align="middle" hspace="20" />
</picture>
<picture>
<img src="docs/images/toolhive.png" alt="ToolHive mascot" width="125" align="middle"/>
</picture>
</p>

[![License: Apache 2.0][license-img]][license]
[![Discord][discord-img]][discord]

Expand Down Expand Up @@ -437,7 +450,7 @@ For detailed information about the project:
- **Language**: TypeScript (strict mode)
- **UI**: React 19 + shadcn/ui + Tailwind CSS 4
- **Auth**: Better Auth (OIDC)
- **API Client**: hey-api + React Query
- **API Client**: hey-api
- **Testing**: Vitest + Testing Library
- **Linting**: Biome

Expand Down
Binary file added docs/images/512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/toolhive-wordmark-black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/toolhive-wordmark-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/toolhive.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion src/app/catalog/components/server-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ export function ServerCard({ server, serverUrl, onClick }: ServerCardProps) {
<p className="line-clamp-3 text-sm leading-[18px] text-muted-foreground cursor-pointer">
{description || "No description available"}
</p>
{serverUrl && <CopyUrlButton url={serverUrl} className="w-fit" />}
{serverUrl && (
<CopyUrlButton url={serverUrl} className="w-fit cursor-pointer" />
)}
</CardContent>
</Card>
);
Expand Down