feat: add SVG favicon and apple-touch-icon
- Add modern SVG favicon with TPMJS "T" logo - Add apple-touch-icon for iOS devices - Update metadata to reference new icons 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
b2984d1f61
commit
7fd6ab9dc6
4 changed files with 29 additions and 0 deletions
11
apps/web/public/apple-touch-icon.svg
Normal file
11
apps/web/public/apple-touch-icon.svg
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 180 180" fill="none">
|
||||
<!-- Background with rounded corners for iOS -->
|
||||
<rect width="180" height="180" rx="40" fill="#0A0A0A"/>
|
||||
|
||||
<!-- T letter stylized as a tool shape - scaled up -->
|
||||
<path d="M40 45h100v22H101v68H79V67H40V45z" fill="#3B82F6"/>
|
||||
|
||||
<!-- Accent dots representing package/registry -->
|
||||
<circle cx="135" cy="112" r="11" fill="#60A5FA"/>
|
||||
<circle cx="135" cy="146" r="11" fill="#60A5FA"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 470 B |
11
apps/web/public/favicon.svg
Normal file
11
apps/web/public/favicon.svg
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" fill="none">
|
||||
<!-- Background -->
|
||||
<rect width="32" height="32" rx="6" fill="#0A0A0A"/>
|
||||
|
||||
<!-- T letter stylized as a tool/wrench shape -->
|
||||
<path d="M8 8h16v4H18v12h-4V12H8V8z" fill="#3B82F6"/>
|
||||
|
||||
<!-- Accent dots representing package/registry -->
|
||||
<circle cx="24" cy="20" r="2" fill="#60A5FA"/>
|
||||
<circle cx="24" cy="26" r="2" fill="#60A5FA"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 418 B |
BIN
apps/web/public/og-image.png
Normal file
BIN
apps/web/public/og-image.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.7 MiB |
|
|
@ -26,6 +26,13 @@ export const metadata: Metadata = {
|
|||
},
|
||||
description:
|
||||
'The registry for AI tools. Discover, share, and integrate tools that give your agents superpowers.',
|
||||
icons: {
|
||||
icon: [
|
||||
{ url: '/favicon.svg', type: 'image/svg+xml' },
|
||||
{ url: '/favicon.ico', sizes: 'any' },
|
||||
],
|
||||
apple: '/apple-touch-icon.svg',
|
||||
},
|
||||
keywords: [
|
||||
'AI tools',
|
||||
'AI agents',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue