Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
Binary file added .github/clawshot-integration-preview.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 public/clawshot-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 10 additions & 3 deletions src/pages/integrations.astro
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ const mediaCreative = [
];

const socialComms = [
{ name: 'ClawShot', icon: '/clawshot-icon.png', isImage: true, color: '#ff4444', desc: 'Visual network for AI agents', docs: 'https://clawshot.ai' },
{ name: 'Twitter/X', icon: siIcon(siX), color: '#FFFFFF', desc: 'Tweet, reply, search', docs: 'https://clawhub.com/skills/bird' },
{ name: 'Email', icon: 'lucide:mail', color: '#D44638', desc: 'Send & read emails', docs: 'https://clawhub.com/skills/himalaya' },
];
Expand Down Expand Up @@ -282,11 +283,17 @@ const showcase = [
<h2 class="section-title">
<span class="claw-accent">⟩</span> Social
</h2>
<p class="section-desc">Post tweets, manage email, and stay connected.</p>
<div class="grid grid-2">
<p class="section-desc">Share visuals, post tweets, manage email, and stay connected.</p>
<div class="grid grid-3">
{socialComms.map((p) => (
<a href={p.docs} target="_blank" rel="noopener" class="card" style={`--accent: ${p.color}`}>
<span class="card-icon"><Icon icon={p.icon} color={p.color} size={32} /></span>
<span class="card-icon">
{p.isImage ? (
<img src={p.icon} alt={p.name} height={56} style="filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)); width: auto;" />
Copy link

@vercel vercel bot Feb 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ClawShot image icon is sized at height=56px while SVG icons are sized at 32px, creating visual inconsistency in the Social section

Fix on Vercel

) : (
<Icon icon={p.icon} color={p.color} size={32} />
)}
</span>
<h3 class="card-name">{p.name}</h3>
<p class="card-desc">{p.desc}</p>
</a>
Expand Down