Skip to content
Closed
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ yarn-error.log*
# OG images are committed (needed for Vercel builds without system fonts)
# Regenerate locally with: npx tsx scripts/generate-og.ts

# superpowers
.superpowers/

# vercel
.vercel

Expand Down
2 changes: 1 addition & 1 deletion components/seo/ConversionCta.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function ConversionCta({ text, description, toolSlug }: ConversionCtaProp
target="_blank"
rel="noopener noreferrer"
onClick={() => trackEvent('CTA Click', { tool: toolSlug ?? text })}
className="block rounded-lg border-l-4 border-l-primary bg-card p-5 shadow-[0_2px_16px_rgba(0,0,0,0.06)] transition-colors hover:bg-secondary"
className="block rounded-lg border border-border bg-card p-5 shadow-[0_2px_16px_rgba(0,0,0,0.06)] transition-colors hover:bg-secondary"
>
<p className="mb-1 font-medium text-foreground">{text}</p>
<p className="text-sm text-muted-foreground">
Expand Down
Loading