Skip to content
Merged
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
12 changes: 9 additions & 3 deletions src/components/landing/quick-integrations.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,23 +134,29 @@ const CodeExample = ({
className="max-w-full bg-black/20 backdrop-blur-lg md:max-w-md"
code={example.commands.npm}
language={example.language}
></CodeBlock>
>
<CodeBlockCopyButton />
</CodeBlock>
Comment on lines +137 to +139
Copy link

Copilot AI Feb 18, 2026

Choose a reason for hiding this comment

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

CodeBlockCopyButton is rendered as an icon-only button without an accessible name. Please pass an aria-label (and/or add visually hidden text) so screen readers can identify it (e.g., "Copy command").

Copilot uses AI. Check for mistakes.
</CodeBlockTab>

<CodeBlockTab value="pnpm" className="w-full p-2">
<CodeBlock
className="max-w-full bg-black/20 backdrop-blur-lg md:max-w-md"
code={example.commands.pnpm}
language={example.language}
></CodeBlock>
>
<CodeBlockCopyButton />
</CodeBlock>
Comment on lines +147 to +149
Copy link

Copilot AI Feb 18, 2026

Choose a reason for hiding this comment

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

CodeBlockCopyButton is used as an icon-only control here without an accessible label. Add an aria-label (and/or sr-only text) so assistive tech can announce the purpose of the button.

Copilot uses AI. Check for mistakes.
</CodeBlockTab>

<CodeBlockTab value="bun" className="w-full p-2">
<CodeBlock
className="max-w-full bg-black/20 backdrop-blur-lg md:max-w-md"
code={example.commands.bun}
language={example.language}
></CodeBlock>
>
<CodeBlockCopyButton />
</CodeBlock>
Comment on lines +157 to +159
Copy link

Copilot AI Feb 18, 2026

Choose a reason for hiding this comment

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

This icon-only CodeBlockCopyButton needs an accessible name. Please add an aria-label (and/or visually hidden text) describing the action (copy the bun command).

Copilot uses AI. Check for mistakes.
</CodeBlockTab>
</CodeBlockTabs>
</div>
Expand Down
Loading