Skip to content

Commit 6225cc3

Browse files
authored
docs: add toolhive logo (#147)
* doc: add toolhive logo in the readme * fix: cursor pointer in the copy url button
1 parent fcd7305 commit 6225cc3

File tree

6 files changed

+17
-2
lines changed

6 files changed

+17
-2
lines changed

README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
## Note: This is an experimental project that is actively being developed and tested - features may change without notice
22

3+
<p float="left">
4+
<picture>
5+
<img src="./docs/images/512.png" alt="ToolHive logo" height="100" align="middle" />
6+
</picture>
7+
<picture>
8+
<source media="(prefers-color-scheme: dark)" srcset="docs/images/toolhive-wordmark-white.png">
9+
<img src="docs/images/toolhive-wordmark-black.png" alt="ToolHive wordmark" width="500" align="middle" hspace="20" />
10+
</picture>
11+
<picture>
12+
<img src="docs/images/toolhive.png" alt="ToolHive mascot" width="125" align="middle"/>
13+
</picture>
14+
</p>
15+
316
[![License: Apache 2.0][license-img]][license]
417
[![Discord][discord-img]][discord]
518

@@ -437,7 +450,7 @@ For detailed information about the project:
437450
- **Language**: TypeScript (strict mode)
438451
- **UI**: React 19 + shadcn/ui + Tailwind CSS 4
439452
- **Auth**: Better Auth (OIDC)
440-
- **API Client**: hey-api + React Query
453+
- **API Client**: hey-api
441454
- **Testing**: Vitest + Testing Library
442455
- **Linting**: Biome
443456

docs/images/512.png

115 KB
Loading
881 KB
Loading
11.4 KB
Loading

docs/images/toolhive.png

881 KB
Loading

src/app/catalog/components/server-card.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ export function ServerCard({ server, serverUrl, onClick }: ServerCardProps) {
4141
<p className="line-clamp-3 text-sm leading-[18px] text-muted-foreground cursor-pointer">
4242
{description || "No description available"}
4343
</p>
44-
{serverUrl && <CopyUrlButton url={serverUrl} className="w-fit" />}
44+
{serverUrl && (
45+
<CopyUrlButton url={serverUrl} className="w-fit cursor-pointer" />
46+
)}
4547
</CardContent>
4648
</Card>
4749
);

0 commit comments

Comments
 (0)