Conversation
Deploying usesend with
|
| Latest commit: |
2150515
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://e0af444e.usesend.pages.dev |
| Branch Preview URL: | https://feat-add-sayr-bronze-sponsor.usesend.pages.dev |
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Your free trial has ended. If you'd like to continue receiving code reviews, you can add a payment method here.
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
WalkthroughThis change adds a "Bronze Sponsors" subsection to README.md containing a linked Sayr entry rendered with a Possibly related PRs
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. 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. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@README.md`:
- Around line 128-134: The external anchor element with href
"https://sayr.io/?utm_source=useSend.com" currently uses target="_blank" but
lacks rel attributes; update that <a ...> tag to include rel="noopener
noreferrer" to ensure opener isolation for the sponsor link.
🪄 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: Organization UI
Review profile: CHILL
Plan: Pro
Run ID: 7ab09184-4e0b-45fe-b9d6-df2cc1773378
📒 Files selected for processing (3)
README.mdapps/marketing/next.config.jsapps/marketing/src/app/page.tsx
| <a href="https://sayr.io/?utm_source=useSend.com" target="_blank"> | ||
| <picture> | ||
| <source media="(prefers-color-scheme: dark)" srcset="https://cdn.doras.to/Sayr/Sayr%20white.png" /> | ||
| <source media="(prefers-color-scheme: light)" srcset="https://cdn.doras.to/Sayr/Sayr%20black.png" /> | ||
| <img src="https://cdn.doras.to/Sayr/Sayr%20black.png" alt="Sayr" style="width:180px;height:auto;"> | ||
| </picture> | ||
| </a> |
There was a problem hiding this comment.
Add rel to the new external _blank sponsor link.
Line 128 opens a third-party URL in a new tab without rel="noopener noreferrer". Please add it for opener isolation.
🔧 Suggested patch
-<a href="https://sayr.io/?utm_source=useSend.com" target="_blank">
+<a href="https://sayr.io/?utm_source=useSend.com" target="_blank" rel="noopener noreferrer">📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| <a href="https://sayr.io/?utm_source=useSend.com" target="_blank"> | |
| <picture> | |
| <source media="(prefers-color-scheme: dark)" srcset="https://cdn.doras.to/Sayr/Sayr%20white.png" /> | |
| <source media="(prefers-color-scheme: light)" srcset="https://cdn.doras.to/Sayr/Sayr%20black.png" /> | |
| <img src="https://cdn.doras.to/Sayr/Sayr%20black.png" alt="Sayr" style="width:180px;height:auto;"> | |
| </picture> | |
| </a> | |
| <a href="https://sayr.io/?utm_source=useSend.com" target="_blank" rel="noopener noreferrer"> | |
| <picture> | |
| <source media="(prefers-color-scheme: dark)" srcset="https://cdn.doras.to/Sayr/Sayr%20white.png" /> | |
| <source media="(prefers-color-scheme: light)" srcset="https://cdn.doras.to/Sayr/Sayr%20black.png" /> | |
| <img src="https://cdn.doras.to/Sayr/Sayr%20black.png" alt="Sayr" style="width:180px;height:auto;"> | |
| </picture> | |
| </a> |
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@README.md` around lines 128 - 134, The external anchor element with href
"https://sayr.io/?utm_source=useSend.com" currently uses target="_blank" but
lacks rel attributes; update that <a ...> tag to include rel="noopener
noreferrer" to ensure opener isolation for the sponsor link.
Summary
cdn.doras.toREADME.mdTesting
Summary by cubic
Adds Sayr as a bronze sponsor on the marketing landing page and in the README, with light/dark logos from the CDN. Updates the sponsor section layout (grouped CodeRabbit logos, “Bronze sponsor” label) and fixes the black logo URL.
cdn.doras.toin Next.js for Sayr logos.Written for commit 2150515. Summary will update on new commits.
Summary by CodeRabbit
Documentation
New Features