Skip to content
Merged
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
Binary file modified img/home.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ function RealHome() {

<Reveal delay={0.15}>
<div className="flex flex-wrap items-center gap-4 rounded-2xl border border-border bg-card/70 px-6 py-4 text-sm text-muted-foreground shadow-sm">
<span className="font-semibold text-foreground">
<span className="font-semibold text-foreground mr-2">
Copy link

Copilot AI Feb 5, 2026

Choose a reason for hiding this comment

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

The Tailwind CSS class order is inconsistent with the codebase conventions. In this project, margin classes are consistently placed before text utility classes. The mr-2 class should be positioned before text-foreground to maintain consistency with patterns seen throughout the file (e.g., lines 495, 509, 528, 678, 712 where mt-2 precedes text-related classes).

Copilot uses AI. Check for mistakes.
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

medium

The parent div already has a gap-4 class, which applies a 1rem (16px) gap between its direct children. Adding mr-2 (0.5rem or 8px) to this <span> element will create an additional margin, resulting in a total of 1.5rem (24px) space between the 'trustedBy' label and the subsequent RevealGroup. This might lead to inconsistent spacing, especially since the RevealGroup itself uses gap-3 (0.75rem or 12px) for its internal elements. Consider removing mr-2 and relying solely on the parent's gap-4 for more consistent spacing, or adjust the parent's gap if a different overall spacing is desired for this section.

Suggested change
<span className="font-semibold text-foreground mr-2">
<span className="font-semibold text-foreground">

{t("trustedBy")}
</span>
<RevealGroup className="flex flex-wrap items-center gap-3">
Expand Down
Loading