Conversation
QR-code campaign landing page for Brickworld Chicago 2026 attendees with seminar schedule placeholders, app CTA, and Beehiiv newsletter embed. Excluded from sitemap and marked noindex/nofollow.
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new campaign-specific landing page at /bw26 for Brickworld Chicago 2026, intended to be accessed via QR code and excluded from SEO indexing.
Changes:
- Added new
/bw26page component with hero, placeholder seminar schedule, and embedded Beehiiv newsletter signup. - Extended
Seoto support a reusablenoIndexflag that emits arobotsmeta tag. - Wired the new route into the SPA router and prerender route list (while keeping it out of the sitemap generator map).
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
src/components/Seo.tsx |
Adds noIndex prop to emit noindex, nofollow robots meta. |
src/components/Navigation.tsx |
Extends Page union to include bw26 so navigation highlighting stays type-safe. |
src/components/BrickworldChicago2026.tsx |
Implements the new Brickworld Chicago 2026 landing page with Beehiiv embed + CTA. |
src/App.tsx |
Registers /bw26 route and maps it in getCurrentPage(). |
scripts/prerender.mjs |
Adds /bw26 to the prerendered routes list. |
Address PR feedback: add plausible-event-name class to the CTA link for campaign attribution, and ensure Beehiiv iframe has maxWidth: 100% for mobile responsiveness.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a new landing page at
/bw26for a marketing campaign at Brickworld Chicago 2026. Attendees will reach this page by scanning a QR code on a flyer included in their check-in goodie bag.Goals of the page:
Key decisions:
noindex, nofollow— prevents search engine indexing (added a reusablenoIndexprop to theSeocomponent)Changes
src/components/BrickworldChicago2026.tsx— new page component with hero, seminar schedule, and newsletter sectionssrc/App.tsx— added/bw26route, import, andgetCurrentPageentrysrc/components/Navigation.tsx— added'bw26'to thePagetype unionsrc/components/Seo.tsx— added reusablenoIndexprop for robots meta tagscripts/prerender.mjs— added/bw26to prerender routes (not added to sitemap generator)Test plan
npm run build:staticpasses (exit 0)/bw26is prerendered tobuild/bw26/index.html/bw26does NOT appear inbuild/sitemap.xml<meta name="robots" content="noindex, nofollow">/bw26in the dev server