web: redirect /banner to homepage with event UTM tags#12
Conversation
Add a /banner short link that redirects to the homepage with UTM parameters attributing traffic to the physical banner at the current in-person event (AI Engineer World's Fair). Temporary redirect so the link can be repointed at the next event. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01HiPuenihAEqYL2YWDq7bfk
|
Warning Review limit reached
More reviews will be available in 43 minutes and 47 seconds. Learn how PR review limits work. Your organization has used up its prepaid credits, and credit purchases are no longer available. Enable the review add-on in the billing tab to keep reviews running — you're only billed for reviews past your plan's rate limits ($0.25/file). ⌛ How to resolve this issue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based credits. 🚦 How do rate limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please see our Fair Usage Limits Policy for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
✨ Finishing Touches🧪 Generate unit tests (beta)
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.
Code Review
This pull request adds a temporary redirect in web/next.config.mjs from /banner to the homepage with UTM tracking parameters to attribute traffic from a physical QR code banner at the AI Engineer World's Fair. The implementation is correct and well-documented, and I have no feedback to provide.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
What
Adds a
/bannershort link that redirects to the homepage with UTM parameters, so traffic from the physical banner at our current in-person event is attributable in analytics.UTM breakdown:
utm_source=ai-engineer-worldfair— the event where the banner lives (origin of the traffic)utm_medium=banner— the physical banner is the channelutm_campaign=ai-engineer-worldfair-2026— groups this event's trafficWhy a temporary redirect
permanent: false(307, not 308) so/bannerstays a reusable short link. When the next event comes around we just update the destination and the link repoints — a permanent redirect would get cached in attendees' browsers and stick to this campaign.How to update for a future event
Change the three UTM values in the
/bannerredirect block inweb/next.config.mjs.🤖 Generated with Claude Code
https://claude.ai/code/session_01HiPuenihAEqYL2YWDq7bfk
Generated by Claude Code
Summary by cubic
Adds a
/bannershort link that redirects to the homepage with UTM tags to attribute traffic from the event banner, using a temporary redirect so the link stays reusable for future events.New Features
/banner→/?utm_source=ai-engineer-worldfair&utm_medium=banner&utm_campaign=ai-engineer-worldfair-2026via 307 (temporary) in Next.js redirects.Migration
/bannerredirect inweb/next.config.mjs.Written for commit 5f31adf. Summary will update on new commits.