Skip to content

feat: add Sayr bronze sponsor#383

Merged
KMKoushik merged 3 commits intomainfrom
feat/add-sayr-bronze-sponsor
Mar 27, 2026
Merged

feat: add Sayr bronze sponsor#383
KMKoushik merged 3 commits intomainfrom
feat/add-sayr-bronze-sponsor

Conversation

@KMKoushik
Copy link
Copy Markdown
Member

@KMKoushik KMKoushik commented Mar 27, 2026

Summary

  • add Sayr as a bronze sponsor on the marketing landing page with light and dark logo variants
  • allow the marketing app to load the hosted Sayr images from cdn.doras.to
  • add Sayr to the GitHub-facing sponsor list in README.md

Testing

  • not run (not requested)

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.

  • New Features
    • Enable remote images from cdn.doras.to in Next.js for Sayr logos.

Written for commit 2150515. Summary will update on new commits.

Summary by CodeRabbit

  • Documentation

    • Added a Bronze Sponsors subsection to the README.
  • New Features

    • Added a Bronze sponsor (Sayr) with dark/light mode image support.
    • Improved sponsor area layout: grouped logos and increased spacing for better visual balance.

@cloudflare-workers-and-pages
Copy link
Copy Markdown

cloudflare-workers-and-pages bot commented Mar 27, 2026

Deploying usesend with  Cloudflare Pages  Cloudflare Pages

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

View logs

@vercel
Copy link
Copy Markdown

vercel bot commented Mar 27, 2026

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

Project Deployment Actions Updated (UTC)
unsend-marketing Ready Ready Preview, Comment Mar 27, 2026 9:53pm

Copy link
Copy Markdown

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

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

Your free trial has ended. If you'd like to continue receiving code reviews, you can add a payment method here.

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai bot commented Mar 27, 2026

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 4bf3ce55-a44c-4a4b-a64a-527336a79bfa

📥 Commits

Reviewing files that changed from the base of the PR and between f1c1be2 and 2150515.

📒 Files selected for processing (1)
  • apps/marketing/src/app/page.tsx

Walkthrough

This change adds a "Bronze Sponsors" subsection to README.md containing a linked Sayr entry rendered with a <picture> element that switches logos for dark and light themes. It updates apps/marketing/next.config.js to permit remote images from https://cdn.doras.to/Sayr/**. In apps/marketing/src/app/page.tsx the Hero sponsor markup is reorganized (grouped CodeRabbit images, increased spacing) and a Sayr sponsor block with theme-specific external logos and a link to sayr.io is added; TrustedBy AvatarFallback JSX formatting was also adjusted.

Possibly related PRs

  • usesend/useSend PR 256: Modifies the marketing app sponsorship JSX, adding theme-switched sponsor logo markup and sponsor entries.
  • usesend/useSend PR 241: Changes marketing Next.js configuration (affects next.config.js image/MDX-related settings), overlapping config edits.
  • usesend/useSend PR 297: Refactors TrustedBy avatar rendering in apps/marketing/src/app/page.tsx, touching the same component area as this change.
🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title 'feat: add Sayr bronze sponsor' directly and clearly summarizes the main change: adding a new bronze sponsor (Sayr) to the marketing landing page, as confirmed by changes across README.md, next.config.js, and page.tsx.
Docstring Coverage ✅ Passed Docstring coverage is 100.00% which is sufficient. The required threshold is 80.00%.

✏️ 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.

❤️ Share

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

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

🤖 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

📥 Commits

Reviewing files that changed from the base of the PR and between eafbb53 and b49e611.

📒 Files selected for processing (3)
  • README.md
  • apps/marketing/next.config.js
  • apps/marketing/src/app/page.tsx

Comment on lines +128 to +134
<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>
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor

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.

Suggested change
<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.

@KMKoushik KMKoushik merged commit bd78ed9 into main Mar 27, 2026
5 checks passed
@KMKoushik KMKoushik deleted the feat/add-sayr-bronze-sponsor branch March 27, 2026 21:57
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