Skip to content

chore(marketing): update trusted by section#3892

Merged
Kitenite merged 3 commits into
mainfrom
replace-ramp-toss
Apr 30, 2026
Merged

chore(marketing): update trusted by section#3892
Kitenite merged 3 commits into
mainfrom
replace-ramp-toss

Conversation

@Kitenite
Copy link
Copy Markdown
Collaborator

@Kitenite Kitenite commented Apr 30, 2026

Description

Related Issues

Type of Change

  • Bug fix
  • New feature
  • Documentation
  • Refactor
  • Other (please describe):

Testing

Screenshots (if applicable)

Additional Notes


Summary by cubic

Replaced Ramp with Toss in the marketing site's Trusted By section. Added apps/marketing/public/logos/toss-wordmark.svg and updated TrustedBySection to use the Toss logo (height 18).

Written for commit 83118a4. Summary will update on new commits. Review in cubic

Summary by CodeRabbit

  • Chores
    • Updated the Trusted By logos on the marketing site: replaced two partner logos with new partners ("wordware" and "toss"), updated logo assets and displayed heights, and applied the changes consistently across mobile grid and desktop two-row layouts for a uniform visual presentation.

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Apr 30, 2026

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 62c311f4-1b1c-4433-b904-07c768df073d

📥 Commits

Reviewing files that changed from the base of the PR and between 83118a4 and 026530c.

⛔ Files ignored due to path filters (1)
  • apps/marketing/public/logos/wordware-wordmark.svg is excluded by !**/*.svg
📒 Files selected for processing (1)
  • apps/marketing/src/app/components/TrustedBySection/TrustedBySection.tsx
🚧 Files skipped from review as they are similar to previous changes (1)
  • apps/marketing/src/app/components/TrustedBySection/TrustedBySection.tsx

📝 Walkthrough

Walkthrough

The CLIENT_LOGOS array in TrustedBySection was modified: the “runway” and “ramp” entries were removed and replaced with “wordware” and “toss”, updating each slot’s logo asset path, label, and display height (and removing invert: false for the former runway entry).

Changes

Cohort / File(s) Summary
Logo Configuration Update
apps/marketing/src/app/components/TrustedBySection/TrustedBySection.tsx
Removed runway and ramp entries; added wordware and toss entries. Updated logo image paths, labels, and display heights; removed invert: false from the runway entry.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Poem

🐰 I hopped and swapped two faces bright,
Wordware dawns where runway sat,
Toss now beams in ramp's old light,
Tiny tweaks—no bug, no spat,
I munch a carrot, then take flight.

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 inconclusive)

Check name Status Explanation Resolution
Description check ❓ Inconclusive The PR description contains only the template structure with unfilled sections (Related Issues, Testing, Screenshots, Additional Notes) and relies on an auto-generated summary for actual change details. Fill in the Description section and provide details in Related Issues, Testing, and Additional Notes sections to document the motivation and validation of the trusted by section update.
✅ Passed checks (4 passed)
Check name Status Explanation
Title check ✅ Passed The title 'chore(marketing): update trusted by section' accurately summarizes the main change—updating the trusted by logos in the marketing site's TrustedBySection component.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch replace-ramp-toss

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
Review rate limit: 6/8 reviews remaining, refill in 11 minutes and 37 seconds.

Comment @coderabbitai help to get the list of available commands and usage tips.

@greptile-apps
Copy link
Copy Markdown

greptile-apps Bot commented Apr 30, 2026

Greptile Summary

This PR updates the "Trusted By" section on the marketing page, replacing the Ramp logo with a new Toss wordmark SVG. The SVG is well-formed and the component entry follows the established pattern exactly.

Confidence Score: 5/5

Safe to merge — purely a content swap in a static logo list with no logic changes.

The change is a straightforward logo replacement: a new SVG asset is added and a single array entry is updated. No logic, auth, or data-handling is affected. All findings are P2 or lower, so the score is 5.

No files require special attention.

Important Files Changed

Filename Overview
apps/marketing/public/logos/toss-wordmark.svg New SVG asset for the Toss wordmark; valid SVG with a defined viewBox and no issues.
apps/marketing/src/app/components/TrustedBySection/TrustedBySection.tsx Replaces the "ramp" logo entry with "toss"; follows the existing CLIENT_LOGOS pattern correctly.

Flowchart

%%{init: {'theme': 'neutral'}}%%
flowchart TD
    A[CLIENT_LOGOS array] --> B[toss entry replaces ramp]
    B --> C[toss-wordmark.svg new asset]
    A --> D[TrustedBySection render]
    D --> E[Mobile grid layout]
    D --> F[Desktop two-row layout]
Loading

Reviews (1): Last reviewed commit: "chore(marketing): update trusted by sect..." | Re-trigger Greptile

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🧹 Nitpick comments (1)
apps/marketing/src/app/components/TrustedBySection/TrustedBySection.tsx (1)

93-101: 💤 Low value

Optional refactor: replace the inline as { ... }[] assertion with a named type / satisfies.

This works, but the anonymous inline type is verbose and harder to reuse/extend. Consider introducing a type ClientLogo = { ... } (or using as const satisfies ClientLogo[]) and then declaring const CLIENT_LOGOS: ClientLogo[] = [...] for clearer intent and safer maintenance.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@apps/marketing/src/app/components/TrustedBySection/TrustedBySection.tsx`
around lines 93 - 101, Replace the anonymous inline assertion used for
CLIENT_LOGOS with a named type to improve readability and reuse: create a type
(e.g., ClientLogo) matching the shape (name, label, logo, height, marginTop?,
borderRadius?, invert?) and then declare the constant as either const
CLIENT_LOGOS: ClientLogo[] = [...] or use "as const" with "satisfies
ClientLogo[]" to get stricter checking; update any usages in
TrustedBySection.tsx to reference the new ClientLogo type if needed.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@apps/marketing/src/app/components/TrustedBySection/TrustedBySection.tsx`:
- Around line 62-67: The toss logo object in TrustedBySection (the entry with
name: "toss") relies on default invert behavior because it doesn't specify
invert, causing it to be rendered with grayscale brightness-0 invert; explicitly
add invert: false to that toss entry (in the clients/logos array used by
TrustedBySection) so the Image styling won't apply the invert filter for the
toss-wordmark.svg and it renders with correct colors.

---

Nitpick comments:
In `@apps/marketing/src/app/components/TrustedBySection/TrustedBySection.tsx`:
- Around line 93-101: Replace the anonymous inline assertion used for
CLIENT_LOGOS with a named type to improve readability and reuse: create a type
(e.g., ClientLogo) matching the shape (name, label, logo, height, marginTop?,
borderRadius?, invert?) and then declare the constant as either const
CLIENT_LOGOS: ClientLogo[] = [...] or use "as const" with "satisfies
ClientLogo[]" to get stricter checking; update any usages in
TrustedBySection.tsx to reference the new ClientLogo type if needed.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 12c7d23d-1f21-4cdf-9014-ce6fa962dbc6

📥 Commits

Reviewing files that changed from the base of the PR and between 2c05729 and d395dc6.

⛔ Files ignored due to path filters (1)
  • apps/marketing/public/logos/toss-wordmark.svg is excluded by !**/*.svg
📒 Files selected for processing (1)
  • apps/marketing/src/app/components/TrustedBySection/TrustedBySection.tsx

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Apr 30, 2026

🚀 Preview Deployment

🔗 Preview Links

Service Status Link
Neon Database (Neon) View Branch
Vercel API (Vercel) Open Preview
Vercel Web (Vercel) Open Preview
Vercel Marketing (Vercel) Open Preview
Vercel Admin (Vercel) Open Preview
Vercel Docs (Vercel) Open Preview

Preview updates automatically with new commits

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

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant