Skip to content

feat(landing): enhance layout of trusted by section for improved spacing#21

Merged
hoangsonww merged 1 commit intomasterfrom
feat/enhance-landing-docs
Feb 5, 2026
Merged

feat(landing): enhance layout of trusted by section for improved spacing#21
hoangsonww merged 1 commit intomasterfrom
feat/enhance-landing-docs

Conversation

@hoangsonww
Copy link
Copy Markdown
Owner

This pull request makes a minor adjustment to the layout in the RealHome component on the homepage. The only change is the addition of a right margin (mr-2) to the "trustedBy" label, which will improve spacing between elements in the UI.

@hoangsonww hoangsonww self-assigned this Feb 5, 2026
@hoangsonww hoangsonww added the bug Something isn't working label Feb 5, 2026
Copilot AI review requested due to automatic review settings February 5, 2026 08:08
@hoangsonww hoangsonww added documentation Improvements or additions to documentation duplicate This issue or pull request already exists enhancement New feature or request help wanted Extra attention is needed good first issue Good for newcomers labels Feb 5, 2026
@vercel
Copy link
Copy Markdown

vercel Bot commented Feb 5, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
collabify-project-manager Building Building Preview, Comment Feb 5, 2026 8:08am

@gemini-code-assist
Copy link
Copy Markdown

Summary of Changes

Hello @hoangsonww, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request focuses on a minor but impactful UI refinement within the RealHome component. By introducing a small right margin to the 'trustedBy' label, the change aims to enhance the overall layout and readability of the section, ensuring a cleaner and more aesthetically pleasing presentation of elements on the homepage.

Highlights

  • UI Spacing Enhancement: A mr-2 (margin-right) utility class has been added to the 'trustedBy' label within the RealHome component on the landing page. This adjustment improves the visual spacing between the label and subsequent elements.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Changelog
  • pages/index.tsx
    • Added the mr-2 Tailwind CSS utility class to the <span> element containing the t("trustedBy") text, located within the RealHome function.
Activity
  • No human activity has been recorded on this pull request yet.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@hoangsonww hoangsonww merged commit d5b5d19 into master Feb 5, 2026
6 of 7 checks passed
Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

This PR enhances the spacing in the "Trusted By" section of the landing page by adding a right margin to the label text. The change improves visual separation between the "trustedBy" label and the following brand badges.

Changes:

  • Added mr-2 (margin-right) utility class to the "trustedBy" label span element

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread pages/index.tsx
<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

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

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

Code Review

This pull request successfully implements the intended spacing adjustment in the 'trusted by' section of the homepage. The addition of mr-2 to the 'trustedBy' label addresses the goal of improving spacing between elements in the UI.

Comment thread pages/index.tsx
<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
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">

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

bug Something isn't working documentation Improvements or additions to documentation duplicate This issue or pull request already exists enhancement New feature or request good first issue Good for newcomers help wanted Extra attention is needed

Projects

Status: Done

Development

Successfully merging this pull request may close these issues.

2 participants